Forum Replies Created
-
AuthorPosts
-
Hi!
Try enabling WP_DEBUG and chack if a message appears instead of the white screen.
Best regards,
JosueHello Arek,
It is possible but it would require a heavy modification to the theme, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Regards,
JosueSeptember 26, 2015 at 12:32 pm in reply to: Grid row – disable caption text on mobile or separate grid on mobile viewing #509475Hey!
There is, open the Grid Row popup and look for this option – http://screencast.com/t/JD3LOCrtQWuX
Cheers!
JosueHey Vice!
It seems google is indexing your wp-content folder, adding the following to your robots.txt file should prevent that from happening:
User-agent: * Disallow: /wp-admin/ Disallow: /wp-includes/ Disallow: /wp-content/Best regards,
JosueSeptember 26, 2015 at 12:24 pm in reply to: problem with menu overlapping logo, menu disappears #509470Ok, i think there’s a way to this but you’d need to sacrifice the header shrink or stickiness (Theme Options > Header > Header behavior).
Best regards,
JosueDe nada Jorge.
Saludos,
josueSeptember 26, 2015 at 5:52 am in reply to: Contact Form — Change Response Wording of "False" and "True" #509348Hi,
Open /framework/php/class-form-generator.php and look for:
if(empty($_POST[$id])) $_POST[$id] = "false"; $this->elements_html .= "<p class='".$p_class.$element['class']."' id='element_$id'>"; $this->elements_html .= ' <input '.$checked.' name="'.$id.'" class="input_checkbox '.$element_class.'" type="checkbox" id="'.$id.'" value="true"/><label class="input_checkbox_label" for="'.$id.'">'.$element['label'].$required.'</label>'; $this->elements_html .= "</p>";Replace it by this:
if(empty($_POST[$id])) $_POST[$id] = "no"; $this->elements_html .= "<p class='".$p_class.$element['class']."' id='element_$id'>"; $this->elements_html .= ' <input '.$checked.' name="'.$id.'" class="input_checkbox '.$element_class.'" type="checkbox" id="'.$id.'" value="yes"/><label class="input_checkbox_label" for="'.$id.'">'.$element['label'].$required.'</label>'; $this->elements_html .= "</p>";Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
Try installing this plugin and pasting the code in Plugins > Edit Functions instead.
Cheers!
JosueDone, i added/modified some of your code in child style.css.
Hi Christian!
1. Here’s a handy plugin that lets you have different menus per Page, you can create a new Menu for each Page and assign it accordingly:
https://wordpress.org/plugins/zen-menu-logic/2. Fonts are handled in General Styling > Fonts, there you can set the font for the headings and body text, if you need to target a more specific element you can make use of the Advanced Styling tool.
Regards,
JosueSeptember 26, 2015 at 12:20 am in reply to: Replace toggle icon with another entypo-fontello font OR use a png #509322That code was meant to be seen as an example, if you want to change
superstickythen it would be:add_filter('avf_default_icons','avia_replace_mobile_menu_icon', 10, 1); function avia_replace_mobile_menu_icon($icons) { $icons['supersticky'] = array( 'font' =>'_font_name_here_', 'icon' => '_charcode_here_'); return $icons; }September 26, 2015 at 12:07 am in reply to: problem with menu overlapping logo, menu disappears #509319Hey Florian!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueHey!
Yes, i see what you were referring to, i tweaked the code to work with variable prices now, check it.
add_action( 'wp_head', 'avia_woocommerce_total_product_price', 31 ); function avia_woocommerce_total_product_price() { if(is_singular('product')){ global $woocommerce, $product; ?> <script> jQuery(function($){ $(window).load(function() { var finalTotal = $('<span class="final_total"></span>').insertAfter($('.single_variation')); var currency = '<?php echo get_woocommerce_currency_symbol(); ?>'; var getCurrentPrice = function(){ return parseInt($('.summary .price .amount:last').text()); }; var updateFinalPrice = function(){ var value = $('[name=quantity]').val(); if (!(value < 1)) { var productTotal = parseFloat(getCurrentPrice() * value); var finalTotalValue = productTotal.toFixed(2).replace('.', ',') + ' ' + currency; finalTotal.html(finalTotalValue); } finalTotal.toggle(!(value <= 1)); }; setTimeout(function(){ $('.minus, .plus').on('click', updateFinalPrice); $('[name=quantity]').on('change', updateFinalPrice); },20); $('#format, #druckart').on('change', function(){ finalTotal.hide(); }); }); }); </script> <?php } }Regards,
JosueEra un modulo de JetPack (Enlaces cortos WP.me), este estaba enlazando al dominio anterior, lo he desactivado, ahora los links deberian funcionar correctamente.
Saludos,
JosueHi,
Can you post the link to your website please? a mockup of what you want to achieve would be helpful too.
Regards,
JosueHola,
Pasame un acceso de administrador en respuesta privada, has probado desactivar todos los plugins para ver si se arregla?
Saludos,
JosueI don’t really understand what you want to be honest.
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueSeptember 24, 2015 at 11:53 am in reply to: Replace toggle icon with another entypo-fontello font OR use a png #508311Hey!
That shouldn’t be a problem if you register it with a code like this:
add_filter('avf_default_icons','avia_replace_mobile_menu_icon', 10, 1); function avia_replace_mobile_menu_icon($icons) { $icons['mobile_menu'] = array( 'font' =>'font_name_here', 'icon' => 'ue811'); return $icons; }You can define your font name there and have it have the same charcode.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHi!
Yes, you can have both simultaneously, here’s a screenshot of a local test i just did – http://screencast.com/t/e7HHimtDB
UberMenu allows you to insert Menus using a shortcode, like:
[ubermenu config_id="main"]Cheers!
JosueSeptember 24, 2015 at 1:57 am in reply to: ENFOLD – Portfolio Slider – Dots instead of navigation arrows #508128Hi,
Thanks, it works but im afraid of changing something and not being able to revert it, can you please create us a temporary FTP / SFTP account? post it here as a private reply.
Regards,
JosueOk done, here’s the final code:
add_action( 'wp_head', 'avia_woocommerce_total_product_price', 31 ); function avia_woocommerce_total_product_price() { if(is_singular('product')){ global $woocommerce, $product; ?> <script> jQuery(function($){ $(window).load(function() { var price = <?php echo $product->get_price(); ?>, currency = '<?php echo get_woocommerce_currency_symbol(); ?>'; $('<span class="final_total"></span>').insertAfter($('.single_variation')); setTimeout(function(){ $('.minus, .plus').on('click', function(){ value = $('[name=quantity]').val(); if (!(value < 1)) { var product_total = parseFloat(price * value), final_total = product_total.toFixed(2).replace('.', ',') + ' ' + currency; $('.final_total').html(final_total); } $('.final_total').toggle(!(value <= 1)); }); },20); }); }); </script> <?php } }To style the final price you can use a CSS code like this:
.final_total{ color: red; }September 23, 2015 at 11:45 pm in reply to: I upload 1 image in 1 size: I get 17 EXTRA different sizes from the same image #508111You are welcome Ester, glad to help :)
Regards,
JosueI see what you want to do here, although there’s an element to create an Enfold menu within a Page (Content Elements > Full Width Submenu), it doesn’t support mega menus at the moment.
I think using a specialized plugin like UberMenu could do the trick.
Regards,
JosueOK i modified the code to keep the original format. Regarding 2) what you want is the original price to stay as it is and when additional units are added a second number should appear at its right?
September 23, 2015 at 8:25 pm in reply to: Replace toggle icon with another entypo-fontello font OR use a png #508067September 23, 2015 at 8:44 am in reply to: Integrate Aweber form into Contact forms on homepage and about page #507533You are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
