Forum Replies Created
-
AuthorPosts
-
Hi Michael,
Regarding your issues with your custom styles not in the merged css files, you may need flush out the cache or clear the browser cache so the newer css is fetched.
As for the !important statement, another workaround for it is to make the weight of your selector heavier.
Hope this helps.Best regards,
NikkoHi Olga,
Glad to hear that.
Try adding this php code at the bottom of your functions.php:remove_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2); remove_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20); add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div2', 2); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div2', 20); if(!function_exists('avia_add_image_div2')) { function avia_add_image_div2() { $nolightbox = ''; $icon = ''; if( avia_woocommerce_version_check( '3.0.0' ) ) { if( current_theme_supports( 'wc-product-gallery-lightbox' ) ) { $nolightbox = 'noLightbox'; } else if( current_theme_supports( 'avia-wc-30-product-gallery-feature' ) ) { $nolightbox = 'noHover'; $icon = '<div class="avia-wc-30-product-gallery-lightbox" '.av_icon_string('search').' ></div>'; } } get_sidebar(); echo '<div class="' . $nolightbox . ' single-product-main-image alpha">' . $icon; } } if(!function_exists('avia_close_image_div2')) { function avia_close_image_div2() { global $avia_config; if(is_product()) { $avia_config['currently_viewing'] = "shop_single"; } echo "</div>"; } }
then inside the WP Dashboard, go to Enfold > General Styling > Quick CSS and add this code:
#top.single-product #main .sidebar { border: none; } #top.single-product #main .sidebar .inner_sidebar.extralight-border { margin-left: 0; }
Hope this helps.
Best regards,
NikkoHi Richard,
You can see this code below from the code you posted:
$current_post['url'] = $link;
this basically just means that it just changes the current post’s url but not the content, so it will just change the link but content is still the same.
Can you give us a link to the page where you want it to take effect? as well as give us admin access, so we can try to check the backend.
Just post the details in private content, so it’s only the moderators who can view it.Best regards,
NikkoHi Mikenna,
I apologize for the misunderstanding, I thought you’re using a footer page with columns in it.
You can use a php widget then place it to the footer column you want it to be placed then use this code:<?php if(avia_get_option('footer_social', 'disabled') != "disabled") { $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); echo avia_social_media_icons($social_args, false); } $avia_theme_location = 'avia3'; $avia_menu_class = $avia_theme_location . '-menu'; $args = array( 'theme_location'=>$avia_theme_location, 'menu_id' =>$avia_menu_class, 'container_class' =>$avia_menu_class, 'fallback_cb' => '', 'depth'=>1, 'echo' => false, 'walker' => new avia_responsive_mega_menu(array('megamenu'=>'disabled')) ); $menu = wp_nav_menu($args); if($menu){ echo "<nav class='sub_menu_socket' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">"; echo $menu; echo "</nav>"; } ?>
Hope it helps.
Best regards,
NikkoHi kbranan,
I checked your site and it seems you have already done it, though the searchbox looks a little bit different from the screenshot but the layout is already the one you desired.
Let us know if you still need further assistance.Best regards,
NikkoHi hypnorich,
I checked your site and noticed it’s not fetching, usually Quick CSS codes should be seen here (link in private content) but in your case it’s not changing a thing.
Where is your site hosted? Godaddy? some sites like godaddy have caching builtin on their site, maybe that’s causing the issue.
If that doesn’t help, can you give us ftp access? and post the ftp credentials in private content, so we can check further.Best regards,
NikkoHey web6s,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
NikkoHey Mikenna,
Try using the Icon or Icon Grid element under Content Elements in the Advanced Layout Builder.
Let us know if this helps.Best regards,
NikkoHey ziggyzip,
To make the category page look like the blog page, go to Enfold > Blog Layout > Blog Layout then set to Grid Layout
As for “however the categories don’t show to sort”, I’m not sure I understand it properly, can you elaborate?Best regards,
NikkoHi flordelizamejia,
Thanks for giving us admin access.
I have modified this part of the code:$taglink = get_tag_link($tag->tag_id);
to:
$taglink = get_tag_link($tag->term_taxonomy_id);
Let us know if you need further assistance.
Best regards,
NikkoHi Justin,
Glad that Victoria helped you :)
Let us know if you need further assistance or if we can close this thread.Best regards,
NikkoHi goloburda,
Yes it won’t work since you put it on Single Product Pages widget area in Widgets but on the product page you set sidebar to Shop Overview Page, just switch Shop Overview Page to Single Product Pages and it should work.
Best regards,
NikkoHi flordelizamejia,
I inspected it and noticed that no urls are generated.
Can you give us admin access? so we can check on the backend and try to fix it if Appearance > Editor is available.
Just post the login credentials in private content, so it’s only visible to the moderators.Best regards,
NikkoHey Richard,
I think you can add your acf code after this line of code:
if($newlink) $link = $newlink;
you can add:
if( get_field( "mylink" ) ) $link = get_field( "mylink" );
Hope it helps.
Best regards,
NikkoHey ngavy,
Can you try adding this css code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) { #top .commentlist .comment>div { padding-right: 10px; } div #reviews #comments ol.commentlist li .comment-text { margin-left: 10px; } }
Best regards,
NikkoOctober 17, 2018 at 2:53 pm in reply to: Advanced Layout Builder in events created with the Events Calendar PRO plugin #1022787Hi aledef,
Glad that we could help :)
Feel free to create a new thread if you need further assistance.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi smoothbob,
Glad to hear that it worked fine now.
What plugin did you use? it might help others having issues same as yours.Best regards,
NikkoOctober 17, 2018 at 10:20 am in reply to: Advanced Layout Builder in events created with the Events Calendar PRO plugin #1022664Hey aledef,
Try adding this code at the bottom of your functions.php:
add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'tribe_events'; /*custom post*/ } } return $metabox; }
Hope it helps.
Best regards,
NikkoHi fashiontribe,
We have modified your child theme and it’s not looping anymore.
We have added this code in functions.php:add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
then in your child theme’s shortcode folder another folder is created called video then copy video.php from enfold > config-templatebuilder > avia-shortcodes > video folder and paste it inside the video folder of the child theme.
Modified line 387 of video.php:$output = avia_html5_video_embed($src, $fallback_img);
to:
$types = array('webm' => 'type="video/webm"', 'mp4' => 'type="video/mp4"', 'ogv' => 'type="video/ogg"'); $attributes = array('autoplay' => 0, 'loop' => 0, 'preload' => '' ); $output = avia_html5_video_embed($src, $fallback_img, $types, $attributes);
Let us know if you need further assistance.
Best regards,
NikkoOctober 17, 2018 at 9:42 am in reply to: Change Menu Text and use buttons on mobile submenu #1022650Hi Ronald,
Sorry I misunderstood it as you want to only see topbar buttons and remove links.
So basically the code only hides the links below 767px.
You can make those links look like a button by using this code:@media only screen and (max-width:767px){ .responsive #header .sub_menu li a { border-radius: 3px; padding: 10px; font-size: 12px; text-decoration: none; display: inline-block; border-bottom-style: solid; border-bottom-width: 1px; margin: 3px 0; line-height: 1.2em; position: relative; font-weight: normal; text-align: center; max-width: 100%; background-color: red !important; border-color: red !important; color: white !important; } }
just change the background color and border color.
Best regards,
NikkoHi Paul,
Try checking out this post in the documentation: https://kriesi.at/documentation/enfold/menu/#one-page-menu
If that doesn’t help, please give us temporary admin access and post the details in private content.Best regards,
NikkoOctober 16, 2018 at 9:18 am in reply to: Change Menu Text and use buttons on mobile submenu #1022051Hi Ronald,
Try adding this css code:
@media only screen and (max-width:767px){ .responsive #header .sub_menu { display: none; } }
Hope it helps.
Best regards,
NikkoHi fashiontribe,
You should copy it from the parent theme: Enfold.
You need to access the files first and go to enfold/config-templatebuilder/avia-shortcodes/section.php
We can help you with it if you can give us ftp access.
Just post the details in private content, so it’s only visible to us moderators.Best regards,
NikkoHi Trinemaija Brandt,
We apologize for the late response.
For the meantime can you try to update to the latest version? and check if this fixes the issue on your end.
Make sure to backup your site first.Best regards,
NikkoHi Solwin Infotech,
Thanks for giving the screenshot, however we couldn’t check your site since it’s in maintenance mode.
Can you give us temporary access? so we can view the page and inspect it.
Just post the credentials in private content.Best regards,
NikkoOctober 16, 2018 at 3:42 am in reply to: The Events Calendar – Event Tickets conflict – Ticket not showing – SOLVED #1021920Hi ashlandwebsites,
Glad to hear that and thanks for posting the complete solution added on your site, it would surely help anyone who are using Event tickets.
Feel free to post a new thread, if you need further assistance.
Thanks for using Enfold and have a great day!Best regards,
NikkoHey agenturwendt,
Thanks for giving us the link to your site.
I noticed that the link you gave isn’t using a boxed layout and there are background images showing.
Can you give us a screenshot of what you’re trying to achieve? it should help us better see a better picture and give you instructions on how to do it.Best regards,
NikkoHi fashiontribe,
Thanks for giving us admin access.
I was able to check the child theme and noticed that you still haven’t done the following:
copy enfold/config-templatebuilder/avia-shortcodes/section.php file into enfold-child/shortcodes/ folder and then open section.php file in your child theme and find'video_loop' => true,
and change it to
'video_loop' => false,
and add the code in this post – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/ into functions.php file of your child theme.
complete the instruction and that should work.Best regards,
NikkoOctober 13, 2018 at 9:28 am in reply to: The Events Calendar – Event Tickets conflict – Ticket not showing – SOLVED #1021015Hi David,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.responsive .av-single-event-meta-bar.av-single-event-meta-bar-mobile { display: block !important; } .responsive .av-single-event-meta-bar.av-single-event-meta-bar-mobile .tribe-events-single-section.tribe-events-event-meta { display: none; } @media only screen and (max-width:768px) { .responsive .av-single-event-meta-bar.av-single-event-meta-bar-mobile .tribe-events-single-section.tribe-events-event-meta { display: block; } }
Hope this helps.
Best regards,
NikkoHi smoothbob,
The server is also another factor if it’s slow or unstable then there’s also chance that js/css aren’t loaded properly which probably could be the cause why it isn’t loading sometimes but also does load properly sometimes.
You can also comment out js codes that might not be necessary but if the problem is on js then the behavior should be consistently showing the issue each load.Best regards,
Nikko -
AuthorPosts