Forum Replies Created
-
AuthorPosts
-
Hi Antonio!
Did you try to upload the images on this page: http://casitasitges.com/wp-admin/media-new.php – I just tested it and the upload seemed to work just fine and the image showed up on the media library page.
Regards,
PeterAugust 12, 2014 at 5:34 pm in reply to: Customized Password Form on Protected Site -> translation with WPML #303346Hi royaltask!
Yes exactly – use this code like:
add_filter( 'the_password_form', 'custom_password_form' ); function custom_password_form() { global $post; $label = "spanish label..."; if(defined(ICL_LANGUAGE_CODE) && ICL_LANGUAGE_CODE == 'en') $label = "english label.."; ...
Cheers!
PeterHey Roy!
Afaik WooCommerce doesn’t support schema.org markups for the product archive templates out of the box. Your best bet is to contact the plugin developers here http://www.woothemes.com/support/ — maybe they can provide some tips how to add the markup to the WooCommerce templates. Personally I can only tell you that you probably need to modify the templates located in wp-content/plugins/woocommerce/templates/ but I’m not sure which files/templates you need to modify.
Best regards,
PeterHey youyou78!
Yes, this is not a valid feed url. If you want to avoid that wordpress adds non-existing feed urls to the header go to SEO > Titles & Metas and activate the “Hide RSS Links” setting.
Best regards,
PeterAugust 12, 2014 at 5:13 pm in reply to: Layout Builder Hiding Google onclick="_gaq.push code ? #303331Hi esotEric!
I replaced the “Textblock” element with a code block – it enables you to edit the raw html code and it won’t strip the onclick event code.
Regards,
PeterAugust 12, 2014 at 5:03 pm in reply to: Having trouble creating gallerys with title text underneath. #303320Hey!
Yes, this is probably the best solution. You could also use dedicated gallery plugins like: https://wordpress.org/plugins/nextcellent-gallery-nextgen-legacy/ to manage the image galleries. The advantage would be that no duplicates show up in the default wordpress media gallery.
Best regards,
PeterHey nicdivi2014!
1) Did you try to install the smtp plugin: https://wordpress.org/plugins/webriti-smtp-mail/ – if even contact form 7 doesn’t work properly your server probably can’t use the php mail() function to send the emails. The smtp plugin will use your mail/smtp server for the sending process and the php mail() function is not required in this case.
2) You can change the color with css code – for the first column (silver) use this code:
.alternate_color .pricing-table li.avia-pricing-row:nth-child(0), .alternate_color .pricing-table li.avia-heading-row:nth-child(0){ background-color: #C0C0C0; }
For the second column:
.alternate_color .pricing-table li.avia-pricing-row:nth-child(1), .alternate_color .pricing-table li.avia-heading-row:nth-child(1){ background-color: #ffee38; }
and the third column:
.alternate_color .pricing-table li.avia-pricing-row:nth-child(2), .alternate_color .pricing-table li.avia-heading-row:nth-child(2){ background-color: #8C7853; }
Obviously you can use different color values if you don’t like the colors I used for the sample code :)
Regards,
PeterAugust 12, 2014 at 4:43 pm in reply to: Recommended widgets for private content and paypal checkout #303297Hi alexmasica!
I recommend to contact the website administrator – maybe they can give you some hints which plugins they used and/or if they customized the plugin/theme files. Personally I only know this plugin: http://a3rev.com/shop/woocommerce-quotes-and-orders/ and http://a3rev.com/shop/woocommerce-email-inquiry-and-cart-options/ which enable you to show different options based on the user status (logged in user, customer role/level, etc.). You can also ask the plugin author pre-sales questions if you’re not sure about the quality or features of the plugin(s).
Regards,
PeterHi!
Great, thank you :) – we’ll include it with the next update.
Best regards,
PeterHey!
Yes, I recommend to increase the allocated php memory to 128M (see http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ ). Then try to install: https://wordpress.org/plugins/wp-super-cache/ and: https://wordpress.org/plugins/bwp-minify/ to cachhe the website data and to minify/compress the js/css files.
Regards,
PeterHi!
Actually, after some research, I found out it’s not a wordpress but host/server limitation: http://wordpress.org/support/topic/wp_query-orderby-random-not-working#post-3104360
Try to contact your host or activate the rand orderby setting if possible
I was developing a site on WP Engine. They actually disable the Orderby Rand Function. If you happen to be using WP Engine, in the dashboard area they put in the WP Admin go there scroll down and make sure the Orderby Rand function is not disabled. You would not believe what I went through before I deduced that it was the host causing the problem
Regards,
PeterHey!
You can’t remove the play/pause event without hacking the shortcodes.js file. If you want to make sure that a theme update does not overwrite your customized shortcode.js file copy it to the child theme folder (enfold-child/js/shortcodes.js) and add this code to the child theme functions.php file:
if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 1); function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_dequeue_script('avia-shortcodes'); wp_enqueue_script( 'avia-shortcodes', $child_theme_url .'/js/shortcodes.js', array('jquery'), 1, true ); }
Note that we also update the parent theme shortcode.js file sometimes – thus I recommend to check the changelog here: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990#item-description__changelog and if the js folder (or shortcodes.js) was updated you also need to update the file in your child theme folder.
Cheers!
PeterHey royaltask!
No, unfortunately not. Enfold creates a separate option set and dynamic stylesheet for each WPML language and it’s currently not possible to synchronize the options. However you could paste the styling code into the child theme ( http://kriesi.at/documentation/enfold/using-a-child-theme/ ) style.css file if you want to use the same code for all languages.
Cheers!
PeterHey!
I’m not sure why WooCommerce doesn’t return the right cart url on your server but I tested the cart widget with the TwentyThirteen theme (standard wordpress theme) and I noticed the same error. Thus it’s not something we can fix on our end and you must contact the plugin developers: http://www.woothemes.com/support/
To temporarily fix it open up wp-content/plugins/woocommerce/templates/cart/mini-cart.php and replace:
<a href="<?php echo WC()->cart->get_cart_url(); ?>" class="button wc-forward"><?php _e( 'View Cart', 'woocommerce' ); ?></a>
with
<?php $cart_page_id = wc_get_page_id( 'cart' ); $url = get_permalink($cart_page_id); ?> <a href="<?php echo $url; ?>" class="button wc-forward"><?php _e( 'View Cart', 'woocommerce' ); ?></a>
Regards,
PeterHi!
Please check the folder permissions of C:\wamp\www\wordpress/wp-content/themes/ and the sub-folders – make sure it’s set to 755 or 775.
Best regards,
PeterHi PaintedMidget!
No, unfortunately this is not possible. The textblock element uses the TinyMCE API which always applies the wp_autop filter to the text block as soon as you switch from “Visual” to “HTML” or vice versa or if you close/reopen the textbox modal window.
Best regards,
PeterHi!
Please try to adjust the “Responsive under” and “Layers container” values on the LayerSlider option page: http://www.clipular.com/c/5191672937840640.png?k=cDJiyM9nsKzMobepOH9jOxZg8ug – try to increase/decrease the values and check the results.
Best regards,
PeterHey!
It works now. I just had to regenerate the thumbnails on this page: https://divawow.org/membersonly/wp-admin/tools.php?page=regenerate-thumbnails – you must keep this page open in the browser, otherwise the regeneration process will stop. The thumbnail size is set to 230x230px. You can also try to increase the quality of the generated thumbnails with: http://wordpress.org/plugins/simplejpegquality/
Cheers!
PeterAugust 11, 2014 at 4:50 pm in reply to: Having trouble creating gallerys with title text underneath. #302714Hey!
Can you post a link to your gallery page please? This is only possible if the image title is stored somewhere in the image link code – then we can use js/jquery to use the image title as link attribute/title.
Cheers!
PeterHey!
Can you please post the login credentials – I just see a coming soon page. I tagged this thread for Josue .
Cheers!
PeterHey!
Please open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php and replace:
if($meta['index'] == 0) $params['close'] = false; if(!empty($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )) $params['close'] = false; if($meta['index'] != 0) $params['class'] .= " slider-not-first";
with
if(empty($meta['index'])) $params['close'] = false; if(!empty($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )) $params['close'] = false; if(!empty($meta['index'])) $params['class'] .= " slider-not-first";
I’ll ask Kriesi to include these changes with the next update.
Regards,
PeterHey!
In theory, yes, you should be able to use the gallery shortcode with a custom field. Just make sure that the custom field output is embedded into a do_shortcode function ( http://codex.wordpress.org/Function_Reference/do_shortcode ) which executes the gallery shortcode. If you need a sample code for the gallery shortcode I recommend to use the default post/page editor and the “Magic wand” ( http://www.clipular.com/c/4952934513115136.png?k=ex4QRXahQjAyghy9l_RpxAw_t6g ) shortcode generator to generate the gallery shortcode.
Best regards,
PeterAugust 11, 2014 at 4:21 pm in reply to: Problem nach Update – Tabelle wird auf iphone nicht vollständig dargestellt #302693Hi!
Ich konnte leider keine einschlägigen Änderungen in der modifizierten table.php finden, welche dieses Layout https://dl.dropboxusercontent.com/u/4900424/Bildschirmfoto%202014-08-06%20um%2015.32.23.png produzieren würden. Ihr könnt probieren, die “alte” table.php statt der neuen einzufügen und nachsehen, ob diese etwas verändert, aber ich denke eher nicht. Wenn der Kunde mit dem neuen Layout leben kann, dann lassen wir es lieber dabei, weil ich nnicht genau weiß, was nun damals genau modifiziert wurde.
Regards,
PeterHey KeithDuddy!
For a quick fix open up wp-content/themes/enfold/js/shortcodes.js and replace:
if(!value.match(/^\w[\w|\.|\-]+@\w[\w|\.|\-]*\.[a-zA-Z]{2,4}$/))
with
if(!value.match(/^\w[\w|\.|\-]+@\w[\w|\.|\-]*\.[a-zA-Z]{2,}$/))
I’ll ask Kriesi to change the validation code with the next update or to comment on this thread if he doesn’t want to change it.
Cheers!
PeterHey!
Afaik this is a limitation of the wordpress taxonomy query which does not support the random parameter. You can only sort it by title/date with an ASC/DESC order. I tested both sort and both order parameters and a different post showed up each time and the query contained the right values – thus the code/query works as intended and it seems to be a wordpress limitation or bug…
Best regards,
PeterHey!
Yes, because we release updates for Enfold each month and hacking the core theme files is not a good idea. You can overwrite or replace the default css code with a child theme easily. Also see http://kriesi.at/documentation/enfold/using-a-child-theme/
Regards,
PeterHey!
You don’t need to add a functions.php file to the child theme folder. Only the style.css file is required. If you add a functions.php file to the child theme folder you can use it to load custom php code. The functions-enfold.php is not required in the child theme folder and WordPress will also not load this file from the child theme folder. If you want to customize some code of the functions-enfold.php file just copy the function into the child theme functions.php and modify the code there.
Cheers!
PeterAugust 9, 2014 at 8:37 am in reply to: Theme Empfehlungen für One Page Design, Flat Design oder Metro Design #301952Hey!
Leider haben wir keine “einfachen” Themes im Angebot, da alle neueren Themes mit dem Layout oder Page Builder ausgestattet sind. Wenn ihr ein wirklich einfaches Theme sucht empfehle ich Genesis.
Regards,
PeterHey Tommy!
I didn’t test this mod but try to replace this line in /config-templatebuilder/avia-shortcodes/portfolio.php:
$title_link = apply_filters('avf_portfolio_title_link', $title_link, $entry);
with
$title_link = apply_filters('avf_portfolio_title_link', $title_link, $entry); $excerpt = "<a href='{$title_link}'>{$excerpt}</a>";
Cheers!
PeterHey!
Personally I was not able to reproduce the issue on Win8 with Chrome but I’ll mark it for Kriesi – maybe he can reproduce it with a Mac PC. You can try to insert this code into the enfold/functions.php or child theme functions.php file:
function add_custom_script(){ ?> <script> jQuery(document).ready(function(){ jQuery(window).trigger('resize'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');
– it will trigger a resize event on page load.
Regards,
Peter -
AuthorPosts