Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Safest way to move to new host, then change URL

    #39432

    Usually this is my methodology for moving a site between hosts:

    1. Zip all files in current host, copy the zip file to new host, extract
    2. Use WP Migrate DB plugin to export the database from the current host, taking care to properly define the URL and directory of the new host
    3. Use phpMyAdmin on new host to import the exported database
    4. Login to the site on new host, and resave the permalink settings
    5. Cursory check to see if everything is working properly

    The above is by far the quickest way to move existing sites between hosts, but it can be quite difficult if you’re not familiar with accessing your server’s control panel and using phpMyAdmin.

    Admin
    Admin

    In reply to: Page Nav – Embedded Styles

    #39424

    Here’s the code for the posts navigation that you referred to:

    <div class="post-nav clearfix">
    <p class="previous"><a href="URL">Older posts «</a></p>
    <p class="next-post"><a href="URL">» Newer posts</a></p>
    </div>

    There is no inline (or embedded) styles there. Only classes which are then styled from the style.css file.

    Admin

    Don’t edit the theme’s files, even the style.css file. Instead, copy and paste the code Prasanna gave you either to the theme’s Custom CSS option or to your own child theme’s style.css file.

    Admin

    In reply to: Add text before the slideshow

    #39379

    Marking thread as resolved. You can do this yourself as well.

    Admin
    Quote:
    It turns out the incompatibility is with the Shortcodes Ultimate plugin.

    If I disable it, the Graphene Options screen displays perfectly.

    Thanks for this information. I’ve looked at the plugin’s code and it appears that the plugin overrides one of the JS libraries that the theme is using, thus causing the issue. We’ll add some workaround for this in the next update, and I’ve also notified the plugin’s developers to only add their scripts where it is needed instead of everywhere.

    Admin

    In reply to: Change "Navigate to Page" Text in Neo Mobile Menu

    #39401

    It is possible, but will require some coding.

    1. Create a functions.php file in the wp-content/uploads/gmneo-custom/ folder.

    2. Add this code into that functions.php file you’ve just created:

    <?php
    function gmneo_filter_gettext( $translated, $original, $domain ) {
    $strings = array(
    'Navigate to page' => 'Your replacement string here',
    );
    if ( ! empty( $strings[$original] ) ) {
    $translations = &get_translations_for_domain( $domain );
    $translated = $translations->translate( $strings[$original] );
    }
    return $translated;
    }
    add_filter( 'gettext', 'gmneo_filter_gettext', 10, 3 );
    Admin

    In reply to: Color Preset "not" functioning

    #39395
    Quote:
    The defaults work, but none of my saved presets. Also, the Primary and Secondary menu don’t change at all.

    Yep, we’ve identified the cause of the two issues above and made the fixes. They’ll be available in the next update.

    Admin

    In reply to: Menu or Pages?

    #39407

    OK, marking the thread as resolved then. You can do this yourself as well.

    Admin

    In order to fix this issue, it’s important for us to be able to reproduce it, which hasn’t been the case so far.

    @Adrianw, can you disable all plugins and see if the issue persists?

Viewing 10 posts - 1,721 through 1,730 (of 6,030 total)