Forum Replies Created
-
AuthorPosts
-
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.
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.
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/
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.
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); }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”.
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>'); } ?>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; } }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.
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; }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; }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/ -
AuthorPosts
