Forum Replies Created

Viewing 20 posts - 3,421 through 3,440 (of 14,506 total)
  • Author
    Posts
  • in reply to: SEO Title #59252
    Sakin
    Keymaster

    @j17dascoli: That the cache of Facebook. You can check your new open graph data from https://developers.facebook.com/tools/debug . Add in your site URL and click on “Debug”, after that click on “Fetch new scrape information” and check in. This will show the exact data that facebook will take when they refresh the cache.

    in reply to: Site logo image size #59251
    Sakin
    Keymaster

    @curlyrenee: You can change the max-height in the following css and then add it in “Appearance => Theme Options => Custom CSS” box. Width is auto and depends on the height of your logo.
    #site-logo img { max-height: 41px; }

    in reply to: Make content page transparent #59250
    Sakin
    Keymaster

    @Daphne: If you want to make transparent for overall site then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .site-content { background-color: transparent; }

    But if you want to do that only in specific page, then first you need to note down that page ID. To find the page ID you can use our plugin http://wordpress.org/plugins/catch-ids/ and the use the css like below, where 7 is the page ID, you can change the 7 to your own page ID.
    .page-id-7 .site-content { background-color: transparent; }

    in reply to: Changing the width of Content and Sidebar #59249
    Sakin
    Keymaster

    @Yuna: Yes, thanks for your appreciation. You can post your 5 stars review at https://wordpress.org/support/view/theme-reviews/adventurous?rate=5#postform

    in reply to: [V4.3] Homepage – Headline & featured content #59248
    Sakin
    Keymaster

    @Brice: Strange, it’s working fine when I check in our server. Can you post in your site URL?

    Ok try the following:
    1. For Promotion Headline
    — Go to “Appearance => Theme Options => Promotion Headline Options”
    — Then try changing value in “Enable Promotion Headline on” and check in

    2. For Feature Content:
    — Go to “Appearance => Theme Options => Featured Content => Featured Content Options”
    — Then try changing value in “Enable Content” and check in

    If this doesn’t work then let me know it. I will email you.

    in reply to: Enter custom CSS #59247
    Sakin
    Keymaster

    @helpme: Those are link, if you want to change the link color, then you can add the following css:
    a { color: #ddcdad; }

    To change the description from below to above, you need to build child theme, for child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy archive.php file to your child theme and move the following code below h1

    <?php
    	// Show an optional term description.
    	$term_description = term_description();
    	if ( ! empty( $term_description ) ) :
    		printf( '<div class="taxonomy-description">%s</div>', $term_description );
    	endif;
    ?>
    in reply to: Featured slider image customization #59240
    Sakin
    Keymaster

    @alphaxyz: Sorry it cannot be done that easy as there is no option to add in, we need to first add option in theme customizer then again we need to code that. Sorry, I will not be able to give support at this level.

    in reply to: undefined function qtrans_convertURL #59212
    Sakin
    Keymaster

    @Josef: We will be adding this in new version update. Plugin compatible comes up after users finds problem. Thanks 🙂

    Sakin
    Keymaster

    @Yuna: Oh! I didn’t knew that you are developer. Cool, great work 🙂

    in reply to: Logo/widgets in Header #59210
    Sakin
    Keymaster

    @Vivien: But, that space is control by the padding-left. So, you need to increase padding if you want to increase the space.

    in reply to: Remove Gravatar.com link from user avatar #59209
    Sakin
    Keymaster

    @Panayot: Not sure if that is possible by default. Can you post in your contributor page and then I can check in.

    in reply to: Adding Video to Homepage Featured Content Options #59195
    Sakin
    Keymaster

    @kateskers39: Sorry there is no option to do that. You can try creating page/post with video and link that page/post in Featured Content.

    in reply to: How to change the position of the Scroll Up #59194
    Sakin
    Keymaster

    @gregd111: It’s actually loaded from script adventurous-custom.min.js which you will find in JS folder inside Adventurous folder. You can view original source in file adventurous-custom.js. Then create new adventurous-custom.js in your child theme folder and then add the following code in your child theme functions.php file:

    function adventurous_child_remove_script() {
        wp_dequeue_script( 'adventurous-custom' );	
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_remove_script', 20 );
    
    function adventurous_child_add_script() {
        wp_dequeue_script( 'adventurous-custom', get_stylesheet_directory_uri() . '/js/adventurous-custom.js', array( 'waypoints' ), '20150330', true );	
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_add_script', 20 );

    We don’t recommend changing it. But if you really want then first you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. Then you need to de

    in reply to: Enabling 'Adventurous Options' in the Custom Post Admin #59192
    Sakin
    Keymaster

    @Yuna: That will be bit difficult and I guess, you might need to hide developer to work on it. You need to use add_meta_box() function in your child theme functions.php file to add in. For example see the below code

     // Add the Meta Box  
    function adventurous_child_add_custom_box() {
    	add_meta_box(
        'adventurous-options', //Unique ID
        __( 'Adventurous Options', 'adventurous' ), //Title
        'adventurous_meta_options', //Callback function
        'post' //Your post type
        ); 	
    }
    add_action( 'add_meta_boxes', 'adventurous_child_add_custom_box' );
    in reply to: undefined function qtrans_convertURL #59191
    Sakin
    Keymaster

    @Josef: Looks like the issue wtth qTranslate-X. This is new plugin and not qTranslate plugin. Thanks for reporting, we will fix this in new version update.

    For now, open the file adventurous-qtranslate.php and find the following code:

    if ( ! function_exists( 'adventurous_menuitem' ) ) :
    /**
     * Template for Converting Home link in Custom Menu
     *
     * To override this in a child theme
     * simply create your own adventurous_menuitem(), and that function will be used instead.
     *
     * @since Adventurous 1.0
     */
    function adventurous_menuitem( $menu_item ) {
    	// convert local URLs in custom menu items	
    	if ( $menu_item->type == 'custom' && stripos($menu_item->url, get_site_url()) !== false) {
    		$menu_item->url = qtrans_convertURL($menu_item->url);
    	}     
    		return $menu_item;
    } // adventurous_menuitem
    endif;

    Then replace that with the following codeL

    if ( ! function_exists( 'adventurous_menuitem' ) ) :
    /**
     * Template for Converting Home link in Custom Menu
     *
     * To override this in a child theme
     * simply create your own adventurous_menuitem(), and that function will be used instead.
     *
     * @since Adventurous 1.0
     */
    function adventurous_menuitem( $menu_item ) {
    	// convert local URLs in custom menu items	
    	if ( $menu_item->type == 'custom' && stripos($menu_item->url, get_site_url()) !== false && function_exists( 'qtrans_convertURL' ) ) {
    		$menu_item->url = qtrans_convertURL($menu_item->url);
    	}     
    	return $menu_item;
    } // adventurous_menuitem
    endif;
    in reply to: Disable text on Post slider #59189
    Sakin
    Keymaster

    @Irina: Ok then remove the following previous css that I gave you
    #slider-wrap .featured-text { display: none; }

    And the add the following css:

    #slider-wrap .featured-text span { display: none; }
    #slider-wrap .featured-text span.slider-title { display: block; }
    in reply to: White space on individual posts #59188
    Sakin
    Keymaster

    @Charissa: You can also add the following css:
    .single .entry-header { margin-bottom: 0; }

    Then when I check in your post, I see google ads code below the title. Where did you add that from. The ads are not loading and it’s taking white space.

    in reply to: Logo/widgets in Header #59187
    Sakin
    Keymaster

    @Vivien:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS”
    #header-right .widget { clear: both; }

    2. You can increase the padding-left in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS”
    #hgroup.logo-enable.logo-left { padding-left: 10px; }

    in reply to: images on tablet #59186
    Sakin
    Keymaster

    @marcodimi: Sorry I am totally confused which image and plugin are you talking about. The dropbox image I was talking about is https://www.dropbox.com/s/6chw2qkpd22gwfd/FullSizeRender.jpg?dl=0, which you posted in above.

    in reply to: Filter on Blog Page #59185
    Sakin
    Keymaster

    @Ben: Make sure that post only belongs to New Category. If that post belongs to 2 categories then you need to deselect both the categories.

Viewing 20 posts - 3,421 through 3,440 (of 14,506 total)