Forum Replies Created

Viewing 20 posts - 3,441 through 3,460 (of 14,509 total)
  • Author
    Posts
  • 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.

    in reply to: Featured slider image customization #59184
    Sakin
    Keymaster

    @alphaxyz: Sorry no plan for 2 featured content area. As you can also use Footer Widget Area and add anything you like. If you want more option, then there is always option to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Home page settings #59177
    Sakin
    Keymaster

    @salen555: Yes, in Pro version you can use Featured Image Slider and then don’t add in link. So, there will be slider image without link.

    in reply to: Custom CSS #59174
    Sakin
    Keymaster

    @andliowoo: It’s because #ffffff is white and you will see white at the end. So, change that to blue like below:

    body {
        background: #1e73be; /* Show a solid blue color for older browsers */
        background: -moz-linear-gradient(#1e73be, #b2dafd);
        background: -o-linear-gradient(#1e73be, #b2dafd);
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1e73be), to(#b2dafd)); /* older webkit syntax */
        background: -webkit-linear-gradient(#1e73be, #b2dafd);
    }
    in reply to: Featured slider image customization #59173
    Sakin
    Keymaster

    @alphaxyz: There is option to move Featured Content above footer. For that go to “Appearance => Customize => Featured Content => Featured Content Options” and then check in option “Check to Move above Footer”.

    in reply to: Disable text on Post slider #59172
    Sakin
    Keymaster

    @Irina: It’s not working as you have PHP code in Custom CSS box. You need to remove the following code from your custom css box. This custom css box is only for css not for php code.

    <?php if ( function_exists('yoast_breadcrumb') ) {
    yoast_breadcrumb('<p id="breadcrumbs">','</p>');
    } ?>
    in reply to: Changing the width of Content and Sidebar #59171
    Sakin
    Keymaster

    @Yuna: If you are adding in your child theme css then you can add the following css instead:

    @media screen and (min-width: 981px) {	
        #main #primary { width: 690px; }
        #main #secondary { width: 200px; }
    }
    @media screen and (min-width: 1025px) {
        #main #primary { width: 730px; }
    }
    @media screen and (min-width: 1153px) {
        #main #primary { width: 860px; }
    }
    @media screen and (min-width: 1281px) {
        #main #primary { width: 930px; }
    }
    @media screen and (min-width: 1345px) {
        #main #primary { width: 1020px; }
    }
    in reply to: Add new fonts #59170
    Sakin
    Keymaster

    @Lynn: Can you post in your site URL after you add in your font from plugin. Then I can check that for you.

    in reply to: Blank text #59169
    Sakin
    Keymaster

    @rojtalbot:`You can change the color code in the following css in “Appearance => Theme Options => Custom CSS” box to change the link color:
    #supplementary .widget-area a { color: #21759b; }

    in reply to: Font and size changing, please help! #59159
    Sakin
    Keymaster

    @tinlee: To change the font, you either need to upgrade to pro version where you have Font Family options or you need to use Font plugin. Try searching for Font plugin at WordPress.org. Then the css will be as below:

    #site-title { font-family: "Lobster";  }
    #site-description { font-family: Arial,sans-serif; }
    in reply to: gallery image caption links #59158
    Sakin
    Keymaster

    @effess: Oh for that you need to build child theme and then copy content-gallery.phpfile in your child theme and edit it. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/

Viewing 20 posts - 3,441 through 3,460 (of 14,509 total)