Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
In reply to: "Connection problem – The page contains too many server redirects".
January 16, 2014 at 5:45 pm #41768Hi Oliver,
So which issue is currently still exist? Is the too many redirect issue resolved? In any case, if you’ll provide me with the login to your website’s admin area, I’ll be happy to take a look at it further.
Admin
Hi Chris,
On further investigation I have determined that the cause for this is the clickable phone number feature in Any Mobile Theme Switcher Pro. If you’re not using this feature, you can disable it by editing the plugin file:
any-mobile-theme-switcher-pro/any-mobile-theme-switcher-pro.php: line 76
Change the line from this:
add_filter( 'the_content', 'amtsp_make_phone_clickable', 20);into this:
// add_filter( 'the_content', 'amtsp_make_phone_clickable', 20);Obviously this is a temporary measure. I will communicate with the plugin author and try to work out a permanent fix, but in the mean time you can use the above.
Admin
Hi Chris,
I don’t seem to be able to replicate the issue on my development server (see screenshot below). Can you try disabling all plugins (except GM Neo Helper, AMTS, and Fast Secure contact form) temporarily to see if it’s a conflict with another plugin?
Admin
There are quite a few other minify plugins out there, such as WP Minify. However, keep in mind that combining and minifying scripts and CSS files is an inherently risky business. It takes only one misbehaving script to bring it all down, and with the number of scripts and CSS files in a typical WordPress install, this is really not that rare.
In fact, whenever I implement minification on any site, it will almost always fail. Then you’ll need to trace which is the misbehaving file and exclude it from the list of files to be minified and combined.
Admin
In reply to: iPhone Web APP & Menus links opeing outside the Web APP
January 11, 2014 at 12:56 am #41707In your
<head>element you have this code:$("a").click(function (event) {
event.preventDefault();
window.location = $(this).attr("href");
});That needs to be wrapped properly like this:
<script type="text/javascript">
jQuery(document).ready(function($) {
$("a").click(function (event) {
event.preventDefault();
window.location = $(this).attr("href");
});
});
</script>Admin
Create a file in your child theme and name it
editor-style.css. Then, add this code into that file:body {
font: normal 13px/20px "Open Sans", sans-serif;
}Admin
In reply to: Browser freezes when trying to make changes to footer
January 10, 2014 at 1:05 am #41619I can’t seem to replicate this issue. What type of changes exactly did you try to make in the settings?
Admin
This would be a little bit more involved to achieve. What do you actually want to achieve, to be able to change the font of certain blocks of text in the post editor, or changing the default font for the text in the post editor? If it’s the earlier, a number of plugins can add this feature for you.
Admin
Using a combination of the theme’s Action Hooks Widget Areas feature and some Custom CSS, you can place anything almost anywhere on your site.
Try the Action Hooks Widget Areas feature first and let us know if you need further help with it.
Admin
Firstly, you’ll need to somehow insert the slider’s shortcode in place of Graphene’s slider. Easiest way to do this would be to disable the Graphene slider, and then use a combination of Shortcode Widget and Graphene’s Action Hooks Widget Areas feature.
