Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Slider is showing as blank

    #35533

    Apologies for the late reply. I had to attend to family matter for the past week and missed your post. You can send me the user ID and password using the contact form here: http://www.khairul-syahir.com/contact-me

    Admin

    In reply to: Re: Blank slider

    #35734

    Topic split. Please remember to create your own topic next time.

    Admin

    In reply to: Built In Slider

    #35722

    It appears that the “Displet Pop” plugin has a script error that’s causing the other scripts in the page to not load. Try deactivate the plugin and see if the slider works. If it does, try reinstall the plugin to see if it helps get rid of the issue. If not, contact the plugin author and let him know about it.

    Admin

    In reply to: Archive

    #35638

    Did you get the issue resolved? Please mark it as so if it is.

    Admin

    In reply to: Problem with Smart Mobile

    #35716

    Try deleting the WPTouch plugin and see if the error still shows.

    Admin

    In reply to: Built In Slider

    #35720

    Moved to Support. Please post in the correct section next time.

    Can you enable the slider again? We need to see the issue to help you troubleshoot it.

    Admin

    In reply to: error, bad format

    #35702

    You will need to enter the your API key in WP Admin > Appearance > Graphene Mobile > API Key. Without the API key, you’ll get that error when updating.

    Admin

    In reply to: Will activating a child theme make me lose current settings

    #35688

    Graphene Options are not affected when you switch to a child theme. They’ll be preserved and you won’t have to set them back again. Custom Header option will have to be set up again though, and your custom menus will need to be reassigned to their menu locations.

    Admin

    In reply to: Order posts by name

    #35562

    Remove those custom category-anime.php and loop-anime.php files. Insert this code into your child theme’s functions.php file instead:

    /**
    * Sort posts in certain category archives according to post title
    */
    function my_sort_archive_by_title( $query ){
    if ( $query->is_archive() && $query->is_main_query() ) {

    /* Argument to is_category() is an array of the IDs of the
    categories whose posts should be sorted by post title */
    if ( is_category( array( 1, 9 ) ) ) {
    $query->set( 'orderby', 'title' );
    $query->set( 'order', 'ASC' );
    }
    }
    }
    add_action( 'pre_get_posts', 'my_sort_archive_by_title' );
    Admin

    In reply to: Menus and pages

    #35691

    You can insert description for each category, then this description will show up at the top of the category archive page. Below that, the posts (or walks, as in your site) that belong to that category will be listed. This is the easiest way, though it is pretty limiting (e.g. no full WYSIWYG support for the description).

    Or, you can keep the current page structure, and just use the Post Tags and Categories for Pages plugin.

Viewing 10 posts - 2,461 through 2,470 (of 6,030 total)