Forum Replies Created
-
AuthorPosts
-
Maybe, if you restored to a point where the Enfold settings didn’t exist. In any case, the best thing you can do right now is ask your hosting provider for a backup of your WP database.
Regards,
JosueHey!
I couldn’t reproduce the issue on my install, make sure you are using the latest version of WordPress, WP attachments and Enfold.
Best regards,
JosueHey!
It’s the line-height that Enfold applies to the #header element, add this to reset it on your custom login div:
#custom_login { line-height: normal !important; }Best regards,
JosueJanuary 27, 2015 at 8:02 am in reply to: How to customize the small color section arrow that points to next section. #386017Hey!
That’s not possible because of how the arrow is currently built (it’s just a rotated square), i’d suggest using a background image to mimic a fullwidth triangle.
Regards,
JosueHey Jan!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { #scroll-top-link{ opacity: 0.7; visibility: visible; } }Cheers!
JosueHey!
Can you post a screenshot/mockup of what would you want to achieve? a link to your site would be helpful too.
Best regards,
JosueNow add this code to Quick CSS:
#header { margin-top: 100px; }Best regards,
JosueHey!
That’s possible but you’d first need to disable the header stickiness in Theme Options > Header > Behavior.
Cheers!
JosueJanuary 27, 2015 at 6:05 am in reply to: 'Show excerpt in all magazine blog list' with "Read More" link #385997Hey!
Refer to this article on how to embed a modified ALB element via child theme:
http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/Cheers!
JosueHey!
Did you change something in Theme Options > General Layout? a temporary admin account would be helpful, please create us one and post it here as a private reply.
Best regards,
JosueHey Abedia!
Try adding this at the very end of your theme / child theme functions.php file:
if(!is_admin()){ add_action('wp_enqueue_scripts', 'avia_force_rtl'); } function avia_force_rtl() { $template_url = get_template_directory_uri(); wp_enqueue_style( 'avia-rtl', $template_url."/css/rtl.css", array(), '1', 'all' ); }Cheers!
JosueJanuary 27, 2015 at 5:55 am in reply to: Possible to customize WooCommerce product page in Enfold? #385992Hi Stefanie!
Yes, it’s possible, add this to your theme / child theme 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'][] = 'product'; /*instead add the name of the custom post type here*/ } } return $metabox; }However, by doing this the default single product layout will no longer show on products with ALB activated, you can use the following shortcode to bring the “Add to Cart” button though:
[add_to_cart id="1"]Change 1 for the product ID.
Regards,
JosueHi,
/wp-content/themes/enfold/functions.php/ looks OK, can you please create me a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
What’s the server URL? also, the WordPress account previously provided is no longer working.
Regards,
JosueHey!
It works fine on my install, have you already tried disabling all third-party plugins to see if it gets fixed?
Best regards,
JosueHey!
Does that prevent the scrolled logo from showing? as far as i know a double slash (//) will reference the page protocol and shouldn’t represent a problem.
Best regards,
JosueJanuary 26, 2015 at 8:07 pm in reply to: ENFOLD SINGLE PRODUCT PAGE- SIDEBAR WILL NOT APPEAR ON THE RIGHT #385801It works now, you had this disabled on Theme Options – http://screencast.com/t/yDtUDRxm
Cheers!
JosueHey Dan!
Try adding this code to the Quick CSS:
@import url(https://fonts.googleapis.com/earlyaccess/alefhebrew.css);Cheers!
JosueHi!
The lightbox pops if you activate the parent theme so the culprit should be your child theme, are you modifying / rewriting the JavaScript files in some way?
Best regards,
JosueJanuary 26, 2015 at 6:02 pm in reply to: New menu items are shown as custom when saving the menu #385641Hi!
You can use the following filter to add a custom content to all pages using ALB (after content):
add_filter('avf_template_builder_content', 'add_custom_content_after', 10, 1); function add_custom_content_after($content = "") { $content .= '<div>Custom Text Here</div>'; return $content; }Cheers!
JosueHey!
That’s strange, give it a few days perhaps it needs some time to appear on your TF account.
Best regards,
JosueHola,
Si, ya esta subida la memoria limite.
Saludos,
JosueHi!
Try playing with position values (remove left, and modify bottom, leave right as it is).
Best regards,
JosueHey!
Can you post a link to that testing page? also can you create me an admin account? post it here as a private reply.
Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
Try using the full youtube video URL, not the shortened one.
Cheers!
JosueJanuary 24, 2015 at 9:10 pm in reply to: How to define custom LINK COLOR for text links within ICON BOX? #384996Hey!
Refer to this article:
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/The class to set in the icon boxes would be
custom_icon_class.Regards,
Josue -
AuthorPosts
