1.Please provide us with the link to your site.
You may try this code:
.footer-product {
font-family: arial;
font-size: 2px!important;
}
With best regards
Brian Johnson
1.Please provide us with the link to your site.
You may try this code:
.footer-product {
font-family: arial;
font-size: 2px!important;
}
With best regards
Brian Johnson
Hello
Sorry for misunderstanding. I noticed your video frame manually inserted in text block. Please check that you are using the latest version of plugins and Theme(1.7.1) and make an update. Don’t forget to backup your site. Then in case this issue will persist check it with default wordpress theme and reply us.
Here is the video how to update theme.
With best regards
Brian Johnson
Hello
You are welcome! We are glad that you have found the solution.
With best regards
Brian Johnson
Please check the link in private content:
With best regards
Brian Johnson
Hello
I found no problem to add Video with “Video Player” Visual Composer element. The url link was copied from share dropdown button from youtube.com. You may read here about you tube API and add such features as autoplay and autohide.
With best regards
Brian Johnson
Hello
Please create the Child theme. Royal Child theme folder comes within zipped package from themeforest. You may read about Child theme here. Then please add following code to the function.php in Child Theme:
function my_widget_tag_cloud_args( $args ) {
$args['number'] = 20;
return $args;
}
Where 20 is number of the tags to display.
With best regards
Brian Johnson
Hello
You have included many times Google maps element which causes errors in map Visual Composer element(javascript code conflict). You may write to the pulgin author about this issue or use another solution for Google maps. For example you may try use some 3-d party plugin. or include Google code directly to the web page using Google documentation.
Thank you for understanding
With best regards
Brian Johnson
You are welcome!
We would appreciate very much if you leave feedback or rating on http://themeforest.net/user/8theme.
With best regards
Brian Johnson
1. Please add this code to the custom.css and adjust your own colors within it:
.top-bar .languages-area a{color:pink; text-decoration: none;
-webkit-transition: color .25s ease;
-moz-transition: color .25s ease;
-o-transition: color .25s ease;
-ms-transition: color .25s ease;
transition: color .25s ease;
cursor: pointer;}
.top-bar .languages-area a:hover{color:green;}
.languages-area .links .active{color:blue!important;}
How to create custom.css you may watch here .
2. Yes this is most popular plugin which you may use to implement multilingual feature to your WP site.
With best regards
Brian Johnson
You are welcome!
Please clarify your requset with more details. If i understand you well please add this code instead of previous:
<a style="color:black" href="<?php the_permalink(); ?>"> Read more</a>
With best regards
Brian Johnson
Hello
You are welcome!
With best regards
Brian Johnson
Please regenerate thumbnails after resizing them with “regenerate thumbnails” plugin.
Feel free to write on this forum. We will assist you in minor customization in most of the cases. If requested customization task requires development/adding special features to the theme we usually offer paid service which is currently not available because of big amount of work with themes update.
With best regards
Brian Johnson
You are welcome!
With best regards
Brian Johnson
Please add this code into the custom.css:
.woocommerce-page .category-description {display:block;}
How to create custom.css you may watch here
With best regards
Brian Johnson
Hello,
All plugins are external extensions which are included into theme because for each product we purchase “Extended license” and that’s why we are able to include it into them. The plugins work fine without activation and you can always get actual version if you want directly from us. Just ask and we’ll send a current version to you. You may update plugin manually from https://www.8theme.com/download-plugins/. The option with registering of the plugins has been already added to plugin and this only allows you to get automatic updates and support for this plugin directly from an author if you need. You don’t need to register the products because it is not required but if you want to get those features, then you need to purchase the plugins directly from the author. This is how it works for all themes on Themeforest and not only in our case.
Please let us know if the issue with error will persist.
Thank you for understanding.
With best regards
Brian Johnson
You are welcome!
With best regards
Brian Johnson
You may try to add following code in to the content-product.php after this line<?php echo do_shortcode(get_the_excerpt()); ?>:
<a style="color:white;" href="<?php the_permalink(); ?>"> <div class="button medium">Read more</div></a>
With best regards
Brian Johnson
Please try this code:
.header {display:none!important;}
With best regards
Brian Johnson
Please navigate to the theme-options->header->Breadcrumbs Style and select “with background”. Then you may upload your image and enable Breadcrumbs option on the shop page or any other page (please see the screenshot)
With best regards
Brian Johnson
You are welcome!
With best regards
Brian Johnson
Hello LindaMendible
Please provide us with wp-admin credentials to your site.
With best regards
Brian Johnson
Hello
Please add this code into the style.css of the Child Theme^
.footer-top .wpb_text_column a:hover{color:pink;}
With best regards
Brian Johnson
You may add following code into the custom.css:
.st-pusher {background-color: #e1e2e0 !important;}
With best regards
Brian Johnson
Hello
I have added following lines of code into the style.css of the Child Theme:
.woocommerce-page .category-description {display:block;}
Please check your site now.
With best regards
Brian Johnson
Hello
Please navigate to the idstore\wp-content\themes\idstore\code\fuctions.php and change
following lines of code:
<a href="<?php echo home_url(); ?>"><img src="<?php echo $logoimg ?>" alt="<?php bloginfo( 'description' ); ?>" /></a>
<?php else: ?>
<a href="<?php echo home_url(); ?>"><span class="logo-text-red">ID</span>Store</a>
With best regards
Brian Johnson
Hello
I have removed wishlist.php from wp-content/themes/woopress/woocommerce and now wishlist is showing. You may delete and reupload woopress/woocommerce folder because it may still contain some old data from previous versions which causes the issue above.
With best regards
Brian Johnson
Hello
Please navigate to the Theme options->single product page->Show share buttons and enable this option.
With best regards
Brian Johnson
Hello
You may find our icons code and add your own part in legenda\wp-content\themes\legenda\framework\shortcodes.php in lines 1238-1280.
With best regards
Brian Johnson
Hello
You are welcome!
With best regards
Brian Johnson
Hello
The issue has been fixed. Please check your site now. Regarding the shortcode function it can not be overwritten using just simple file replacement. In case you want to change some functions from theme files please add your modifications to the functions.php of your child theme and if they are not wrapped in if (function_exists('functon')) you should remove them on load and add your child customization.
I have added following lines of code to the fuctions.php:
function remove_parent_functions() {
remove_shortcode('share', 'etheme_share_shortcode');
add_shortcode('share', 'etheme_share_shortcode_child');
}
add_action('init','remove_parent_functions');
function etheme_share_shortcode_child($atts, $content = null) {
….your custom function.
With best reagrds
Brian Johnson