Forum Replies Created
-
AuthorPosts
-
Hi David!
Try opening archive.php and look for this block of code:
$atts = array( 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns' => 3, 'class' => 'avia-builder-el-no-sibling', 'paginate' => 'yes', 'use_main_query_pagination' => 'yes', 'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() ) );
Change it to:
$atts = array( 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns' => 3, 'class' => 'avia-builder-el-no-sibling', 'paginate' => 'yes', 'orderby' => 'rand', 'use_main_query_pagination' => 'yes', 'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() ) );
Best regards,
JosueApril 21, 2016 at 1:54 pm in reply to: Mobile Header Looks Different In Private Browsing Mode in Safari on iPhone #619142Hey!
Have you checked it on another device? i can’t reproduce the issue on my end.
Best regards,
JosueHey peiiep!
The links you posted are not working.
Best regards,
JosueHi,
Check if the issue persists with the default WordPress theme activated.
Regards,
JosueApril 21, 2016 at 1:41 pm in reply to: None of my videos showing despite following all the WP4.5 Update Suggestions #619134You are welcome, in case someone else has this issue (seems to be a bug with header sidebar), the following CSS code did the fix:
.html_header_sidebar .container_wrap { width: 100%; }
Regards,
JosueHi Ken!
Are you using the Enfold video shortcode?
[av_video src='http://www.youtube.com/watch?v=G0k3kHtyoqc' format='16-9' width='16' height='9' custom_class='']
Regards,
JosueHey Richard!
You could create a second version of the slider (and place it at the bottom) and use classes like this for each respective slider so the top one only appears in desktop and the bottom one in mobile:
.only-mobile{ display: block !important; } .only-desktop{ display: none !important; } @media only screen and (min-width: 767px) { .only-mobile{ display: none !important; } .only-desktop{ display: block !important; } }
Best regards,
JosueApril 21, 2016 at 1:26 pm in reply to: LayerSlider WP not fullwith responsive with any browser #619127Hi!
Can you post a screenshot of the issue?
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueApril 21, 2016 at 1:20 pm in reply to: None of my videos showing despite following all the WP4.5 Update Suggestions #619121It’s fixed.
Ok, you’d need to add some code to child functions.php and style.css / Quick CSS:
functions.php:
function avia_close_image_div() { echo "</div>"; } function avia_add_summary_div() { global $avia_config; if(is_product()) { $avia_config['currently_viewing'] = "shop_single"; get_sidebar(); } echo "<div class='single-product-summary'>"; }
Quick CSS:
#top.single-product #main .sidebar { float: right; width: 20%; margin-left: 50px; } .single-product-main-image { width: 16%; }
Hi!
Try the following:
https://kriesi.at/support/topic/create-a-link-to-an-open-gallery/#post-427405Best regards,
JosueHey!
What do you mean by ‘broke the site’? do you have access to the php error logs?
Regards,
JosueHello!
It is possible but it would require a heavy modification to the theme, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.slideshow_caption { width: 60%; }
Cheers!
JosueApril 21, 2016 at 12:07 pm in reply to: None of my videos showing despite following all the WP4.5 Update Suggestions #619091Hey!
Your site seems to be working fine, can you point which video on which Page is not working?
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueOk then change it here – http://screencast.com/t/JvF2Y48pb
Hm, where’s what i see on Chrome – http://screencast.com/t/c0o5j68EYAfk, have you checked on another computer?
Hi Charlotte!
Can’t really note a difference to be honest, can you provide a mockup of what you want to change?
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.avia_mobile .avia-tooltip{display: none !important; }
Cheers!
JosueHey!
Change your code to:
#portfolionavcontainer .widget_nav_menu ul:first-child>.current-menu-item>a{ border-left: 3px solid #a87a34 !important; color:#a87a34 !important; background: none !important; font-weight: normal !important; padding-left: 15px !important; }
Best regards,
JosueHey!
Change the code you have in Quick CSS to:
#top .av_header_transparency .avia-menu-text { opacity: 0; visibility: hidden; }
Best regards,
JosueApril 21, 2016 at 11:34 am in reply to: Logo and Main Menu – Left Sidebar option main content not centering since update #619058Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueApril 21, 2016 at 11:33 am in reply to: How do I make all the product boxes the same size in Woocommerce #619057Hey!
Try adding this code to the Quick CSS:
#top .inner_product_header { min-height: 120px; }
Cheers!
JosueHey Frank!
Try adding this code to the Quick CSS:
#top div .product_on_sale .inner_product_header { padding-right: 75px; }
Cheers!
JosueHi!
Seems you managed to fix it with this code:
img.attachment-widget.wp-post-image { width: 80px; height:80px; }
Best regards,
JosueHey!
If you’d like the sidebar at the left you can set it in the Layout Options.
Regards,
JosueApril 21, 2016 at 11:21 am in reply to: How to replace predefined Google fonts template from Enfold with Enfold-Child? #619046Well in that case you can override the whole array with a code like this:
add_filter( 'avf_google_heading_font', 'avia_add_custom_font'); add_filter( 'avf_google_content_font', 'avia_add_custom_font'); function avia_add_custom_font($fonts) { $new_fonts = array(); $new_fonts['Custom Google Font Name Here'] = 'Custom Google Font Name Here'; $new_fonts['Another Custom Google Font Name Here'] = 'Another Custom Google Font Name Here'; return $new_fonts; }
Regards,
Josue -
AuthorPosts