Forum Replies Created
-
AuthorPosts
-
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.
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; }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; }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
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 in2. For Feature Content:
— Go to “Appearance => Theme Options => Featured Content => Featured Content Options”
— Then try changing value in “Enable Content” and check inIf this doesn’t work then let me know it. I will email you.
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.phpfile 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; ?>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.
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 🙂
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.
Sakin
Keymaster@Panayot: Not sure if that is possible by default. Can you post in your contributor page and then I can check in.
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.
Sakin
Keymaster@gregd111: It’s actually loaded from script
adventurous-custom.min.jswhich you will find in JS folder inside Adventurous folder. You can view original source in fileadventurous-custom.js. Then create newadventurous-custom.jsin your child theme folder and then add the following code in your child themefunctions.phpfile: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
June 9, 2015 at 12:11 pm in reply to: Enabling 'Adventurous Options' in the Custom Post Admin #59192Sakin
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 themefunctions.phpfile 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' );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;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; }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.
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; }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.
-
AuthorPosts
