Forum Replies Created
-
AuthorPosts
-
January 19, 2017 at 9:36 am in reply to: how to change the text : Thank you. Thank you, Your order has been received. #735749
Hey decode,
Try adding this code in functions.php:
add_filter( 'woocommerce_thankyou_order_received_text', 'avia_thank_you' ); function avia_thank_you() { $added_text = '<p>Thank you very much!</p>'; return $added_text ; }
Just replace Thank you very much!. Hope this helps :)
Best regards,
NikkoHey Net-Impact,
Yes, it’s possible. You can set the page’s Header visibility and transparency to Hide Header in this page located at the right bottom when you edit the page. Then use a color section and Fullwidth Submenu at the bottom of color section. Hope this helps :)
Best regards,
NikkoJanuary 19, 2017 at 9:12 am in reply to: Titles & breadcrumbs – can they appear only on category archives #735745Hey M1000000,
Yes, you need to turn it on so it is enabled then add this css code in Quick CSS (located in Enfold > General Styling):
.page .title_container { display: none !important; }
Hope this helps :)
Best regards,
NikkoHey marissaconniff,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoHi,
Try adding this css code in Quick CSS:
#avia-menu .menu-item span.avia-menu-text { color: #222 !important; }
Let us know if this helps :)
Best regards,
NikkoJanuary 19, 2017 at 9:02 am in reply to: Transparent head logo on mobile changes to regular site logo #735741Hey ftlamont,
Can you post a link to your site? so we can take a closer look.
Best regards,
NikkoHey jelle,
Try using this shortcode:
[av_social_share title='Share this entry' style='' buttons='custom' share_facebook='aviaTBshare_facebook' custom_class='']
Hope this helps :)
Best regards,
NikkoJanuary 19, 2017 at 8:57 am in reply to: Enfold – previous and next product-page arrows on posts to navigate to products #735739Hi,
Glad we could help :)
Best regards,
NikkoHi,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.page-id-446 #av_section_3 .entry-content-wrapper { width: 780px; max-width: 100%; margin-left: auto; margin-right: auto; }
You also might want to get rid of those circular bullets:
.page-id-446 #av_section_3 .entry-content-wrapper ul { list-style: none; }
Hope this helps :)
Best regards,
NikkoHey hector1069,
Are you using a textblock? if you are just below the content there is a Font Size setting where you can adjust the size of the font in that specific block.
Best regards,
NikkoJanuary 19, 2017 at 8:29 am in reply to: Commanding mobiles to ignore left and right padding of elements #735734Hey Jambo,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) { .responsive #top #wrap_all .flex_column { padding: 0 !important; } }
Hope this helps :)
Best regards,
NikkoHi,
I just checked your site and it seems you have the font in blue color, try switching it to white and add this css code in Quick CSS (located in Enfold > General Styling):
#header_main_alternate { background: blue !important; }
Hope this helps :)
Best regards,
NikkoHey adrianwackernah,
I’m not sure if we can help you with the how woocommerce bookings functionality since the integration of plugins with Enfold is not through functionality but through its design. Try to contact the plugin support as they could help you more on this issue.
Best regards,
NikkoHey publidata,
Yes, it’s possible with some custom css codes you need to add on Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) { .responsive #top #wrap_all #header { position: fixed !important; } .responsive #top #main { padding-top: 150px !important; } }
You might need to adjust the padding-top value. Let us know if this helps :)
Best regards,
NikkoJanuary 19, 2017 at 8:16 am in reply to: woocommerce product add-on is not in the right place(too close to right) #735726Hey YongyanLi,
I think we could hep you with that one, can you post the link to that page? so we can take a closer look.
Best regards,
NikkoJanuary 19, 2017 at 8:13 am in reply to: Insert a color section in the full width top of a post #735725Hi,
You can use Advance Layout Builder on posts, once it is enabled it will be like a page, however you will lose the default elements that is provided in the post like the date, featured image, comments section, etc.
Best regards,
NikkoHi,
Glad that you figured it out. Try adding this css code in Quick CSS (located in Enfold > General Styling):
.page-id-1302 #after_section_3 { border-top: 0 !important; }
Let us know if this helps :)
Best regards,
NikkoHey drimmerj,
I checked the site and the homepage menu link is using the right link which is http://www.energyandlights.com/
Best regards,
NikkoHi,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.home #after_layer_slider_1 .flex_column.av_one_third iframe { max-height: 180px; overflow: scroll; }
Hope this helps.
Best regards,
NikkoHey,
Glad that you found the right settings and thanks for sharing the solution :)
Regards,
NikkoHi,
Thanks for creating the page, however you haven’t added a classname as instructed in the link I gave, but try using this code and add it to Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) { .responsive #top .flex_column_table, .avia-section .entry-content-wrapper { display: flex !important; flex-direction: column-reverse; } }
When you have added a class to the section, just replace .avia-section to .your_class_name. The current code will affect everything so it reverses the columns in a section. Hope this helps.
Regards,
NikkoHi,
Yes, as long as the color name is supported it should be changed easily, you can see here the accepted values: http://www.quackit.com/css/css_color_codes.cfm
Regards,
NikkoHi Pascal,
Yes, just copy header.php to the child theme and do the modification. This is how it works, wordpress will first look for the header.php file in the child theme if it can’t find any it will look for header.php in the parent theme, so if you have header.php in child theme it will use it instead of the one in the parent theme. Hope this helps.
Cheers!
NikkoHi,
The code should look something like this:
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { if( is_front_page() ) { $header['header_title_bar'] = ''; return $header; } }
Let us know if this helps :)
Cheers!
NikkoHi,
Sorry for the delayed response. The best way to do this is first make a backup, then import the lifestyle blog demo, the demo has only 3 pages: Home, About, Contact just check for duplicates and there are several posts that you need to remove which is from the lifestyle blog demo. I think these are the things that you only need to watch out for.
Best regards,
NikkoHi,
Try using this css code:
#top .scroll-down-link:before { color: rgba(255,255,255,0.1); }
Let us know if this helps :)
Cheers!
NikkoHi Elsa,
Thanks. I tried the login I used before but didn’t work when I trying to login. The code wasnt working because > is being replaced with > also I placed the code near the bottom of Quick CSS. Let us know if this is good :)
Best regards,
NikkoHi,
Try using is_front_page() conditional statement: https://codex.wordpress.org/Function_Reference/is_front_page
Hope this helps :)Best regards,
NikkoHey honighut,
Try checking out this thread: https://kriesi.at/support/topic/display-of-woocommerce-product-short-description-in-the-product-grid/
Best regards,
NikkoHi,
Sure, I just checked it but I don’t see the the form in the news page.
Best regards,
Nikko -
AuthorPosts