Forum Replies Created
-
AuthorPosts
-
Hey!
Since you didn’t set the slider to autorotate, I enable the Loop Video Player option for each video. It seems to work well now. What happens when you use videos longer than 6 seconds, say 20 secs?
Best regards,
IsmaelApril 8, 2015 at 1:29 pm in reply to: Add filter to masonry module – show post category and product category #425255Hi!
Not sure if this is going to work with the plugin but you can try to add this to the functions.php file:
add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod', 10, 2 ); function avf_masonry_loop_prepare_mod( $key, $entries ) { $id = $key['ID']; if($key['post_type'] == 'post') { foreach ( $key as $post => $value ) { $field = get_field('product_url',$id); if($post == 'html_tags' && $field) { $value[0] = 'a href="' . $field .'"'; } $key[$post] = $value; } } return $key; }
Best regards,
IsmaelHey!
Why did you set the Header Custom Height to 300px? Is that intentional? If you want the look of the header from the link you provided, set the Menu and Logo Position to Logo left, Menu below then add this to the Quick CSS field to change the background color of the menu container:
div#header_main_alternate { background: red; }
Best regards,
IsmaelHey!
You have to Import the Parent Theme Settings once you activated the child theme. Please refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
IsmaelHey!
I’m sorry but you can’t edit the style of the actual facebook module. Add this one to apply a white background:
.av_facebook_widget_wrap.av_facebook_widget_wrap_border_yes { background: white; }
If you want, you can create the facebook likebox widget manually: https://developers.facebook.com/docs/plugins/page-plugin
Best regards,
IsmaelApril 8, 2015 at 11:52 am in reply to: Problems with WPML Menu not displaying correctly in back end #425183Hi!
So far you’re the only user who reported this issue so somehow, it has something to do with your server configuration. What happens when you delete all plugins then install WPML only? Please contact your hosting provider, maybe they got something to say about this issue. You can ask them for the error logs if there’s any.
Cheers!
IsmaelHey andrewlasher!
Thank you for using Enfold.
Set the Enfold > Header > Menu and Logo Position to Logo left, Menu right. Set the Header Size to custom pixel value. Adjust the height of the header to match the height of the logo image.
Regards,
IsmaelHi DROR!
Thank you for using Enfold.
Use this to adjust the size:
h1.post-title.entry-title a { font-size: 40px!important; }
Regards,
IsmaelApril 8, 2015 at 4:05 am in reply to: Problems with WPML Menu not displaying correctly in back end #425057Hey Antonio!
Thank you for using Enfold.
What happens when you switch to a default theme? Try to download a fresh copy of the WordPress files then override your installation. Get a new copy of enfold then override the theme files as well.
Increase the memory limit to at least 256M: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Regards,
IsmaelHi!
You can copy the whole function inside the functions.php file and it will override the default code:
add_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20); function avia_woocommerce_frontend_search_params() { global $avia_config; if(!empty($avia_config['woocommerce']['disable_sorting_options'])) return false; $product_order['default'] = __("Default Order",'avia_framework'); $product_order['title'] = __("Name",'avia_framework'); $product_order['price'] = __("Price",'avia_framework'); $product_order['date'] = __("Date",'avia_framework'); $product_order['popularity'] = __("Popularity",'avia_framework'); $product_sort['asc'] = __("Click to order products ascending", 'avia_framework'); $product_sort['desc'] = __("Click to order products descending", 'avia_framework'); $per_page_string = __("Products per page",'avia_framework'); $per_page = get_option('avia_woocommerce_product_count'); if(!$per_page) $per_page = get_option('posts_per_page'); if(!empty($avia_config['woocommerce']['default_posts_per_page'])) $per_page = $avia_config['woocommerce']['default_posts_per_page']; parse_str($_SERVER['QUERY_STRING'], $params); $po_key = !empty($avia_config['woocommerce']['product_order']) ? $avia_config['woocommerce']['product_order'] : 'default'; $ps_key = !empty($avia_config['woocommerce']['product_sort']) ? $avia_config['woocommerce']['product_sort'] : 'asc'; $pc_key = !empty($avia_config['woocommerce']['product_count']) ? $avia_config['woocommerce']['product_count'] : $per_page; $ps_key = strtolower($ps_key); $nofollow = 'rel="nofollow"'; //generate markup $output = ""; $output .= "<div class='product-sorting'>"; $output .= " <ul class='sort-param sort-param-order'>"; $output .= " <li><span class='currently-selected'>".__("Sort by",'avia_framework')." <strong>".$product_order[$po_key]."</strong></span>"; $output .= " <ul>"; $output .= " <li".avia_woo_active_class($po_key, 'default')."><a href='".avia_woo_build_query_string($params, 'product_order', 'default')."' {$nofollow}> <span class='avia-bullet'></span>".$product_order['default']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'title')."><a href='".avia_woo_build_query_string($params, 'product_order', 'title')."' {$nofollow}> <span class='avia-bullet'></span>".$product_order['title']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'price')."><a href='".avia_woo_build_query_string($params, 'product_order', 'price')."' {$nofollow}> <span class='avia-bullet'></span>".$product_order['price']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'date')."><a href='".avia_woo_build_query_string($params, 'product_order', 'date')."' {$nofollow}> <span class='avia-bullet'></span>".$product_order['date']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'popularity')."><a href='".avia_woo_build_query_string($params, 'product_order', 'popularity')."' {$nofollow}> <span class='avia-bullet'></span>".$product_order['popularity']."</a></li>"; $output .= " </ul>"; $output .= " </li>"; $output .= " </ul>"; $output .= " <ul class='sort-param sort-param-sort'>"; $output .= " <li>"; if($ps_key == 'desc') $output .= " <a title='".$product_sort['asc']."' class='sort-param-asc' href='".avia_woo_build_query_string($params, 'product_sort', 'asc')."' {$nofollow}>".$product_sort['desc']."</a>"; if($ps_key == 'asc') $output .= " <a title='".$product_sort['desc']."' class='sort-param-desc' href='".avia_woo_build_query_string($params, 'product_sort', 'desc')."' {$nofollow}>".$product_sort['asc']."</a>"; $output .= " </li>"; $output .= " </ul>"; $output .= " <ul class='sort-param sort-param-count'>"; $output .= " <li><span class='currently-selected'>".__("Display",'avia_framework')." <strong>".$pc_key." ".$per_page_string."</strong></span>"; $output .= " <ul>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page)."> <a href='".avia_woo_build_query_string($params, 'product_count', $per_page)."' {$nofollow}> <span class='avia-bullet'></span>".$per_page." ".$per_page_string."</a></li>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page*2)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 2)."' {$nofollow}> <span class='avia-bullet'></span>".($per_page * 2)." ".$per_page_string."</a></li>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page*3)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 3)."' {$nofollow}> <span class='avia-bullet'></span>".($per_page * 3)." ".$per_page_string."</a></li>"; $output .= " </ul>"; $output .= " </li>"; $output .= " </ul>"; $output .= "</div>"; echo $output; }
Cheers!
IsmaelApril 8, 2015 at 3:45 am in reply to: Preview button not showing recent changes while editing #425051Hi!
You can try this:
.captchaSizeDivLarge:after { content: 'Description Here'; display: block; clear: both; color: red; } .captchaSizeDivLarge { margin-bottom: 20px; }
Best regards,
IsmaelHi!
If you don’t mind, please provide a screenshot of what you’re trying to do. You can use imgur or dropbox to post a screenshot. If you want to show the content of the post in the blog posts element, use the default editor instead of the advance layout builder for post. Note that anything you add in the advance layout builder for post will not show in the blog overview page. Example:
http://www.sbq.cat/wp-admin/post.php?post=3305&action=edit&message=1
http://www.sbq.cat/wp-admin/post.php?post=3252&action=edit&message=1Cheers!
IsmaelHey!
You also have the section.php file in the child theme folder. What is it doing in there? If you want to modify the shortcode templates inside the child theme folder, you need to create a “shortcodes” folder then place all shortcode templates inside. Add this to the functions.php file:
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; }
EDIT: You already have that code on functions.php so just create a “shortcodes” folder. Place the section.php file inside.
Best regards,
IsmaelHi condonpb!
Thank you for using Enfold.
Looks like it is working well because I don’t see any insecure content error on the console. All links point to https. Just one thing, please update the theme to version 3.1.3.
Best regards,
IsmaelHi!
Add this to the Quick CSS field to disable the link:
h1.post-title.entry-title a { pointer-events: none; }
Best regards,
IsmaelApril 8, 2015 at 3:13 am in reply to: Menu Position and Search – http://www.alfaweb.at/test/ #425040Hi alfaweb2!
Please don’t create duplicated posts. We answered this question here: kriesi.at/support/topic/search-position/
Regards,
IsmaelHi!
I checked the shop page but there are no products there. Where is your shop page?
Regards,
IsmaelApril 8, 2015 at 3:09 am in reply to: WPML issues with activating, seeing no site content, not being able to configure #425038Hi!
You don’t need to edit default-constants.php file. The modification in the wp-config.php file is enough to increase the memory limit. Make sure that your server allow this limitation. You can contact your hosting provider just to make sure.
Cheers!
IsmaelHey!
Thank you for using Enfold.
I use google translate to read the inquiry but I’m not sure if I understand you correctly. If you could translate the inquiry, that would be great.
Regards,
IsmaelHi awel!
Thank you for using Enfold.
Do you want to enable the advance layout builder for custom post types? Please refer to this: https://kriesi.at/support/topic/enfold-saving-post-type-inclusion-in-child-theme/#post-419261
Best regards,
IsmaelHey!
You can use the pre and code tags to create code blocks:
This is the code
Or enclosed the text inside “backticks” symbols:
This is another code
Best regards,
IsmaelHi!
This is what I see when I check the page. The add to cart and quantity input element:
Regards,
IsmaelHi!
It is the default behaviour of the post navigation right from the start. I’m not sure how you managed to filter them alphabetically. Please change the post date manually.
Best regards,
IsmaelHi!
Try to install this plugin to force https: http://shop.webaware.com.au/downloads/ssl-insecure-content-fixer
If it doesn’t work, edit config-templatebuilder > avia-template-builder > php > font-manager-class.php, look for this code:
$fstring = $font_list['folder'].'/'.$font_name;
Replace it with:
$folder = is_ssl() ? str_replace('http', 'https', $font_list['folder']) : $font_list['folder']; $fstring = $folder.'/'.$font_name;
Cheers!
IsmaelHi haydaw!
Thank you for using Enfold.
Note that the page layout settings will override the enfold theme options all the time. Can you please provide a link to the page with the issue?
If you want to enable the Page Sidebar Navigation, you need to set a parent page for a group of pages. It will display child pages or nested subpages of the parent page. Make sure that it is enabled on Enfold > Sidebar Settings. Also, note that the page sidebar navigation will always display at the top of every other widgets.
Best regards,
IsmaelHey Mark!
Thank you for using Enfold.
Please refer to this link on how to troubleshoot contact form issues: http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/
Cheers!
Ismael -
AuthorPosts