Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    Hi 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

    In reply to: NEO and Fast Secure Contact Form

    #41718

    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

    In reply to: NEO and Fast Secure Contact Form

    #41715

    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?

    1tiyhjz.png

    Admin

    In reply to: New Version Mobile Neo Not Working

    #41574

    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

    #41707

    In 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

    In reply to: Changing font in 'Post Editor' in Child Theme

    #41688

    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

    #41619

    I can’t seem to replicate this issue. What type of changes exactly did you try to make in the settings?

    Admin

    In reply to: Changing font in 'Post Editor' in Child Theme

    #41686

    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

    In reply to: Placing objects beside the slider

    #41690

    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

    In reply to: Full Width Independent Slider

    #41692

    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.

Viewing 10 posts - 1,511 through 1,520 (of 6,030 total)