Forum Replies Created
-
AuthorPosts
-
March 26, 2015 at 2:55 am in reply to: Center Logo in Navgation and hover the pics like in eunoia #418267
Hi!
1. Use this CSS:
button.single_add_to_cart_button { min-height: 150px; border-radius: 600px !important; text-transform: uppercase; }2. You’d need to convert the WooCommerce variations dropdown to something more manageable like radio buttons, i found this plugin that could do the trick:
http://designloud.com/woocommerce-radio-buttons-plugin/Regards,
JosueHey!
You can set specific Languages for specific Users:
https://wpml.org/documentation/getting-started-guide/language-setup/setting-the-wordpress-administration-language/Best regards,
JosueHi!
Make sure that your wp-content/uploads folder’s permissions are set to 755. Also try updating WordPress, WPML + extensions. If none of these work try contacting WPML Support:
https://wpml.org/forums/forum/english-support/Best regards,
JosueHm, no not really. Where did you see that message?
Si, seria mejor.
Hey!
Use a shortcode like this to get the progress bar:
[av_progress bar_styling='av-striped-bar' bar_animation='av-animated-bar'] [av_progress_bar title='Compétence ou tâche' progress='100' color='theme-color' icon_select='no' icon='43'] [/av_progress]Modify as needed.
Cheers!
JosueHola Mario,
No, lo que se pon en Quick CSS se guarda en la base de datos asi que no tienes que preocuparte de ello cuando actualices.
Saludos,
JosueYou are welcome, always glad to help :)
Regards,
JosueHey!
Issue is not coming from Enfold as it happens with the default theme activated too, i’d suggest contacting your hosting provider support.
Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
Change this code in your Quick CSS:
#header_main .container, .main_menu ul:first-child > li a { line-height: 136px !important; }To:
#header_main .container, .main_menu ul:first-child > li > a { line-height: 136px !important; }Regards,
JosueHi,
Try adding this at the very end of your theme / child theme functions.php file:
function custom_img_position_script(){ if(is_singular('post')){ ?> <script> (function($){ $(window).load(function() { $('.entry-content-header').before($('.big-preview.single-big').detach()); }); })(jQuery); </script> <?php }else if(is_page('70')){ ?> <script> (function($){ $(window).load(function() { $('.entry-content-header').each(function(){ $(this).before($(this).next('.big-preview.single-big').detach()); }); }); })(jQuery); </script> <?php }else{ } } add_action('wp_footer', 'custom_img_position_script');Regards,
JosueJust make sure to keep everything up-to-date, WordPress, Plugins and Enfold. Nevertheless, if anything unexpected occurs, we’ll be always here to help :)
Best regards,
JosueHi!
Not possible without deeply editing the theme files, i’d suggest the following:
1. Enable this.
2. Set a custom class to that button (ex:custom_click): http://screencast.com/t/1kkB01lkLPs
3. Add this to your theme / child theme functions.php:function trigger_func_on_custom_button(){ ?> <script> (function($){ $(window).load(function() { $('.custom_click').on(function(e){ e.preventDefault(); ppsShowPopup(100); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'trigger_func_on_custom_button');Regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueHey!
On which page are you getting this error? also, have you tried disabling all third-party plugins to see if it gets fixed?
Cheers!
JosueHey!
Refer to this:
http://bootstrapbusinesssolutions.com/wordpress/genesis-framework/set-default-image-size-on-attachment-pages/Regards,
JosueHey!
Go to the Theme Options and re-save them to regenerate the dynamic stylesheet.
Cheers!
JosueHi!
Set “cases” in the Color Section (http://screencast.com/t/B1N7FH81e) instead of using a
<a name='cases'></a>.Regards,
JosueMarch 25, 2015 at 12:55 am in reply to: Advanced Layout-Builder breaks on single-product, if Smart Coupons is active #417488Try updating both WooCommerce and Smart Coupons to their latest versions (2.3.7 and 2.8.4).
Regards,
JosueHey!
Do the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change or add an image size.
4. Regenerate the thumbnails by clicking the button at the bottom.Cheers!
JosueHi!
You’ll only lose the Theme Settings and the Menus + Widget settings. However, there is a handy button you can use to import the theme settings from the parent to the child – http://screencast.com/t/v9kWPYJLSsL
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.avia-table td { font-weight: bold; }Cheers!
JosueHey!
The login details you provided are not working.
Cheers!
JosueHola Lidia,
Copia esto al functions.php de tu child theme:
function avia_post_nav($same_category = true, $taxonomy = 'category') { global $wp_version; $settings = array(); $settings['same_category'] = $same_category; $settings['excluded_terms'] = ''; $settings['wpversion'] = $wp_version; //dont display if a fullscreen slider is available since they overlap if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true; $settings['type'] = get_post_type(); $settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy; if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true; if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true; $settings = apply_filters('avia_post_nav_settings', $settings); if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return; 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']); } $entries = apply_filters('avia_post_nav_entries', $entries, $settings); $output = ""; foreach ($entries as $key => $entry) { if(empty($entry)) continue; $the_title = isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," "); $link = isset($entry->av_custom_link) ? $entry->av_custom_link : get_permalink($entry->ID); $image = isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail'); $tc1 = $tc2 = ""; $class = $image ? "with-image" : "without-image"; $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >"; $output .= " <span class='label iconfont' ".av_icon_string($key)."></span>"; $output .= " <span class='entry-info-wrap'>"; $output .= " <span class='entry-info'>"; $tc1 = " <span class='entry-title'>{$the_title}</span>"; if($image) $tc2 = " <span class='entry-image'>{$image}</span>"; $output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1; $output .= " </span>"; $output .= " </span>"; $output .= "</a>"; } return $output; }Saludos,
JosueHey Jessica!
Can you post a link to a category with an image?
Regarding the checkout page changes, as they are not visual changes but more of functionality so you’d need to use a plugin for that, something like this could work:
http://www.woothemes.com/products/woocommerce-checkout-field-editor/Cheers!
JosueHi Susanna!
Please check the test page i created here, i’ve manually set a URL and a custom icon.
Regards,
JosueHola Jose,
¿Has probado en otro navegador / computadora? seria de mucha ayuda si tomases una captura de pantalla de lo que te sale a ti.
Saludos,
JosueHey!
You can use this plugin:
https://wordpress.org/plugins/zen-menu-logic/BTW, if you are looking for a more specialized solution i’d suggest checking out WPML.
Regards,
JosueHi @Zarrougt!
You should be able to find that demo available if you are running the latest version of Enfold (3.1.1).
Best regards,
Josue -
AuthorPosts
