Forum Replies Created
-
AuthorPosts
-
Hi!
Add a codeblock element to the page content and then add this inside the codeblock.
<style type = "text/css"> .content, .sidebar { padding-top: 0px !important; } </style>Regards,
ElliottHi!
I can’t really tell what the problem is from your screenshots (your site looks the same to me as in the screenshots). Go ahead and highlight what your trying to do in the screenshots so we can get a better idea and send us a WordPress login.
Regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
Hi Joe!
To do this you’ll need to have your header set to scroll and not sticky. Otherwise your menu will not be viewable on smaller screens.
Add this to your custom CSS.
.sub-menu { left: auto !important; opacity: 1 !important; position: relative !important; top: auto !important; visibility: visible !important; } .main_menu a { border: 0px !important; }Best regards,
ElliottHey Courtney!
When you edit the color section set the “Background Image Position” option to “Center Center”.
Best regards,
ElliottJanuary 9, 2015 at 6:49 pm in reply to: Products with Same Heights & Variable Widths Help Needed. #377535Hey!
Your using the Woocommerce product widget there correct? It resizes the images to 90×90 so they will all display square anyway. You can try posting on the Woocommerce support to see if there is an easy way to have the widget display images in their fullsize instead of thumbnails.
Cheers!
ElliottHi Delta3!
Thanks for using Enfold.
Can you send us a link to your page so we can get a better idea of what’s going on?
Cheers!
ElliottHi rynleigh!
Try adding this to your custom CSS.
@media only screen and (max-width: 767px) { #advanced_menu_toggle { display: block !important; } .main_menu { display: none !important; } }You may need to play around with the 767px value so it switches on the right spot.
Cheers!
ElliottHi Zeng!
Try opening up /enfold/js/shortcodes.js and change the “click” to “mouseover” on lines 2526, 2534, and 2546.
For example line 2526 look like this.
tab.addClass('tab_counter_'+i).bind('click', function()And it should be changed to this.
tab.addClass('tab_counter_'+i).bind('mouseover', function()Best regards,
ElliottHi!
Navigate to Dashboard > Appearance > Editor. Here you can edit the theme template files. Find the one that says “functions.php” and then add the code to the bottom of the file and save.
Regards,
ElliottHey mrianforest!
It uses a box shadow. If you want to change it then you can use this CSS.
.iconbox_top .iconbox_content { box-shadow: rgba(0, 0, 0, 0.3) !important; }The first three 0’s you can change to create an RGB color.
Cheers!
ElliottHey simonefiorucci!
Open up /enfold/functions-enfold.php and find lines 357 – 366.
if(version_compare($settings['wpversion'], '3.8', '>=' )) { $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } else { $entries['prev'] = get_previous_post($settings['same_category']); $entries['next'] = get_next_post($settings['same_category']); }And change it to this.
if(version_compare($settings['wpversion'], '3.8', '>=' )) { $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } else { $entries['next'] = get_previous_post($settings['same_category']); $entries['prev'] = get_next_post($settings['same_category']); }Regards,
ElliottHi!
Sorry there was a typo. Try copying / pasting it again.
Regards,
ElliottHey!
It would be best to contact the plugin author to see if he has any idea on why it would be messing with gravatars. There are quite a few social plugins out there so you could always try a different one.
Cheers!
ElliottHey!
After reinstalling Firefox the print preview is working fine for me again. I don’t see any issues with your site. What happens when you reinstall Firefox?
Can you take a screenshot and highlight what your seeing so we can get a better idea?
Cheers!
ElliottHi!
Send us a WordPress login and we’ll take a look.
Regards,
ElliottJanuary 9, 2015 at 5:58 pm in reply to: Stretched layout with background image – Is this possible? #377489Hi DigitalEssence!
Try adding this to your custom CSS.
.avia-section { background: blue; } .avia-section .container { background: white; }Regards,
ElliottHey sberendss!
Instead of a textblock use a codeblock and add this around your text.
<div style = "padding: 20px; background: rgba(255,255,255,0.5);"> your text here </style>Regards,
ElliottHey solra93!
1. Open up /enfold/includes/helper-main-menu.php and on lines 120 – 129 you should see this.
$avia_theme_location = 'avia'; $avia_menu_class = $avia_theme_location . '-menu'; $args = array( 'theme_location' => $avia_theme_location, 'menu_id' => $avia_menu_class, 'menu_class' => 'menu av-main-nav', 'container_class' => $avia_menu_class.' av-main-nav-wrap'.$icon_beside, 'fallback_cb' => 'avia_fallback_menu', 'walker' => new avia_responsive_mega_menu() );You’ll need to contact the support of your “Woocommerce Membership” plugin and ask if they have a function for checking if the current user is subscribed. You can add the check in like so.
$avia_theme_location = 'avia'; $menu_name = ''; // Use the theme location if ( /* check is user is subscribed */ ) { $menu_name = 'your-menu-slug-here'; } $avia_menu_class = $avia_theme_location . '-menu'; $args = array( 'theme_location' => $avia_theme_location, 'menu' => $menu, 'menu_id' => $avia_menu_class, 'menu_class' => 'menu av-main-nav', 'container_class' => $avia_menu_class.' av-main-nav-wrap'.$icon_beside, 'fallback_cb' => 'avia_fallback_menu', 'walker' => new avia_responsive_mega_menu() );And then replace “your-menu-slug-here” with the name of the menu you want to switch out.
2. You can use this CSS to hide the menus on your checkout pages.
.woocommerce-cart .main_menu, .woocommerce-checkout .main_menu { display: none !important; }Best regards,
ElliottHi!
Try completely deleting Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest and then try adding this to the bottom of your functions.php file.
if(!function_exists('mysql_real_escape_string_alt')) { function mysql_real_escape_string_alt($value) { global $avia_config; $search = array("\\", "\x00", "\n", "\r", "'", '"', "\x1a"); $replace = array("\\\\","\","\\n", "\\r", "\'", '\"', "\\Z"); return str_replace($search, $replace, $value); } }And then change line 1322 in /enfold/framework/php/class-framework-widgets.php from this.
$content = mysql_real_escape_string($content);To this.
$content = esc_sql($content);Best regards,
ElliottHey!
The customization your doing is not an easy thing to do. I suppose you could try to keep changing the width for certain screen sizes.
@media only screen and (min-width: 600px) and (max-width: 700px) { #top .big-preview.single-big { width: 105%; } } @media only screen and (min-width: 500px) and (max-width: 600px) { #top .big-preview.single-big { width: 104%; } } @media only screen and (min-width: 400px) and (max-width: 500px) { #top .big-preview.single-big { width: 103%; } } @media only screen and (max-width: 400px) { #top .big-preview.single-big { width: 102%; } }What is the code you used to add the button?
Cheers!
ElliottJanuary 9, 2015 at 12:35 am in reply to: Products with Same Heights & Variable Widths Help Needed. #377155Hi!
Try switching it to this then.
.inner_product img { margin: 0 auto !important; max-height: 150px !important; width: auto !important; }Cheers!
ElliottHi MadRhino!
Not sure I understand correctly. You have elements in each cell and you want to align them? They should be flush at the top by default but if you want to move one down a bit then you can drag a separator element in front of the element you wish to move down. When editing the separator you can set it to white space so it’s not visible and is just used to move stuff down.
If that’s not correct then send us a link to your page and take a screenshot highlighting what your trying to do so we can get a better idea.
Cheers!
ElliottJanuary 9, 2015 at 12:25 am in reply to: Advantages using heading and text blocks over code blocks for SEO or load time? #377150Hi vidaelf!
It wouldn’t make a difference. It’s whatever is easiest for you.
Regards,
ElliottJanuary 9, 2015 at 12:22 am in reply to: Content is not being updated and goes missing every time I hit update button #377146Hey!
After I was done testing I edited the page to remove my changes. Not really sure what could be going on there.
What happens when you use a different browser? Make sure all plugins are deactivated while testing.
Best regards,
ElliottHey a-l-p!
Just paste the full code into the codeblock content section. You do not need to use the wrapper option. And make sure the “Escape HTML Code” is not checked (you currently have it checked in your screenshot).
Regards,
ElliottHi!
If you want to remove it then add this to your custom CSS.
.tag-page-post-type-title { display: none !important; }If you want to change it then you can find it on lines 56 and 96 in /enfold/tag.php.
echo "<h3 class='post-title tag-page-post-type-title'>".$label."</h3>";Regards,
ElliottHey!
Sorry, the first element in the array is the layout builder. The meta options are the second element so it should be $b[1] instead of $b[0].
add_filter( 'avf_builder_boxes', 'enfold_customization_posts_builder' ); function enfold_customization_posts_builder( $b ){ $b[1]['page'] = array( 'portfolio', 'page', 'post', 'article', 'books', 'etc' ); return $b; }And don’t forget to add your CPT slugs to the array.
Cheers!
ElliottJanuary 9, 2015 at 12:06 am in reply to: How to set a default posts division for each new post #377139Hi!
Try adding this to your custom CSS.
.search #header_main { border-bottom: 0px !important; } .search .header_bg { background: transparent !important; } .search #main { padding-top: 0px !important; }Cheers!
ElliottHey WEBCREATIVI!
Try this instead.
add_action( 'wp_enqueue_scripts', 'enfold_remove_css', 20 ); function enfold_remove_css() { wp_dequeue_style( 'avia-base' ); wp_deregister_style( 'avia-base' ); }Cheers!
ElliottHi!
Your IDs do not match. The Timea Csonti post ID is 10156 but your using 68.
Best regards,
Elliott -
This reply was modified 11 years ago by
-
AuthorPosts
