Forum Replies Created
-
AuthorPosts
-
Sorry for the late response.
You should activate the Child Theme to be able to customize your theme.
If you customize directly on the parent theme, these will lose when updating new version.
Hi,
You can remove the cache and try again.
I reload your site and it still normal works.
http://prntscr.com/jluvld (Firefox)
http://prntscr.com/jluwtv (Chrome )
Hi,
Please click the button "Backend Editor" to use the function Drag, Drop for Shortcode.
Hi,
It seems the problem comes from the embed.js file. http://prntscr.com/jlexg8
Currently, you use the Popup Signup Form (mailchimp), and the embed.js is loaded manually your site
You can try to rebuild the popup signup form again.
Thanks.
Hi,
I have checked on the mobile, you can view the attachment.
If you want to reduce the header size, you can change the height by CSS that I added earlier.
Thanks.
Hi,
Can you tell me where you have added MailChimp form?
Hi,
You can use the plugin "Related post" to solve this issue.
Thanks for your feedback.
We fixed this issue and will update in a few weeks.
Thanks.
Hi,
Seem to have the jquery conflict between the plugin "MailChimp for Woocommerce" and Theme.
You can contact the author of this plugin for support or you can send me a .zip file. I will help you check.
Thanks.
Sorry for the delayed reply!.
I have added some CSS lines to the style.css of Child Theme. http://prntscr.com/jkkplo
Please reload your site and check again.
Thanks.
7 years, 8 months ago in reply to: Removing Breadcrumb from page which i set as homepage and Header Text #16140Sorry for the delayed reply.
** To disable the Breadcrumb:
- If you want to disable all page, you go to Theme Options -> Pages -> Scroll down and turn off "Breadcrumb".
- If you want to disable some pages not all, you go to Pages Options -> Page Title -> http://prntscr.com/jkk4db
** Add Header Text:
1 - You go to Theme Options -> Header -> Top bar: http://prntscr.com/jkk622
- Turn on "Top Bar".
- Set "Top bar Layout Column".
- Select "Top bar sidebar".
2 - You go to Appearance -> Widgets -> Add widget for Top bar sidebar.
Hope it helps!.
Thanks.
Sorry for the late response.
I have login your site and change some options. Please reload your site and check again.
Thanks.
Sorry for the late response.
If you want to set the Shop page is the Home page, you need to go to Settings -> Reading -> Front Page -> set "Shop Page".
Hi,
You can add these lines to the style.css of Child Theme or Custom CSS:
.yolo-mobile-header-nav.menu-drop-dropdown ul.yolo-nav-mobile-menu{
max-height: 600px;
overflow-y: auto;
}
Thanks.
Hi,
If you want to change the slug "portfolio" to "product", you can add this function to functions.php file of Child Theme.
function yolo_update_portfolios_slug( $args, $post_type ) {
if ( 'yolo_portfolio' === $post_type ) {
//$args['rewrite']['slug'] = 'presidentes';
$my_args = array(
'rewrite' => array( 'slug' => 'product', 'with_front' => false )
);
return array_merge( $args, $my_args );
}
return $args;
}
add_filter( 'register_post_type_args', 'yolo_update_portfolios_slug', 10, 2 );
-
AuthorPosts
