Forum Replies Created
-
AuthorPosts
-
January 11, 2014 at 9:02 pm in reply to: Cart Drop Down and WPML String Translation Compatibility Issues #208465
Hey!
Please check if the cart works now. I increased the query limit from 5 to 15 and it works on all pages now. I had to replace
limit = 5
with
limit = 15
in config-woocommerce/woocommerce-mod.js
Regards,
PeterHey!
I just tried the code and it works for me. Please delete the entire code in functions.php and replace it with http://pastebin.com/raw.php?i=gxH3hQjj
Cheers!
PeterHey Jean!
2.4.5 is the latest version. 2.5 was a typo and it’s actually reserved for the next big feature release. Kriesi made a mistake and released 2.4.3 as 2.5 and then uploaded a new version (2.4.4) to correct the version number.
Regards,
PeterHey Alexa!
The contact form will use the email address the user entered into the “E-Mail” field of the contact form. If your mail client supports the “Reply” feature it should automatically send the email back to the user email address and you don’t need to modify the theme code.
Best regards,
PeterJanuary 11, 2014 at 3:47 pm in reply to: Is it possible to make a Masonry gallery not fullwidth? #208408Hi!
I’m not sure but you can try the nextgen gallery plugin: http://wordpress.org/plugins/nextgen-gallery/ – maybe it supports such an interface.
Regards,
PeterHey!
No, probably the menu widget doesn’t support shortcodes. You can try to use following code to execute the shortcodes – insert it at the bottom of functions.php
add_filter( 'wp_nav_menu_items', 'avia_do_shortcode_nav_widget', 10, 2 ); function avia_do_shortcode_nav_widget($items, $args) { $items = do_shortcode($items); return $items; }
Regards,
PeterHey!
Did you try to use the icon shortcode instead of the html code? You can use the default editor and the “Magic wand” tool to generate the shortcode. Then copy/paste it into the menu title field or any other text field.
Cheers!
PeterJanuary 11, 2014 at 1:04 pm in reply to: Is it possible to make a Masonry gallery not fullwidth? #208390Hi!
Please check the thumbnail fade in effect option: http://www.clipular.com/c/5844663923638272.png?k=kpW9Aw9E9gbNaWSuXuSe5QXCPA0 and set it to “Activate on page load”.
Regards,
PeterHey!
The code is valid – I just tested it on my test server and it worked. Please delete the entire content/code within functions.php and then insert this code: http://pastebin.com/raw.php?i=G6GTHZ7p – it’s the same code I used on my test server and it should work on your server too.
Regards,
PeterHi mediumstudio!
Yes, Kriesi deactivates the post navigation on pages with fullwidth sliders or elements to avoid that the slider buttons overlap the post navigation and vice versa. If you want to activate the navigation on all pages simply insert following code at the bottom of functions.php. You can also place it in your child theme functions.php
add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1); function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; return $settings; }
Best regards,
PeterHi!
You just need to replace the http:// protocol with https//. Go to Enfold > Theme Options and check the logo url (it’s displayed next to the “Upload” button) and the background image urls (Enfold > Styling). Both urls will probably look like http://hazelwoodsoapcompany.com/wp-content/uploads/sites/14/2014/01/background-tile-238×300.jpg and http://hazelwoodsoapcompany.com/wp-content/uploads/sites/14/2013/11/logo.png
Replace the http:// prefix with https:// and save the theme options and all pages should be secure.
Cheers!
PeterHi!
It works now – it was a WPML configuration problem. I had to set a Italian translation for the “portfolio” ppost type slug on this page: http://www.buzzaceto.eu/nannini/wp-admin/admin.php?page=wpml-translation-management/menu/main.php&sm=mcsetup (“Post personalizzati” > “Tipi di post personalizzati”). I used “portfolio-items-it” for now but you can change it anytime. Afterwards I went to: http://www.buzzaceto.eu/nannini/wp-admin/options-permalink.php?settings-updated=true to save the permalinks.
PS: I’m not sure if you can use “products” as a slug for the portfolio post type. The products slug might be reserved for the WooCommerce plugin (products post type) and I wouldn’t risk to use the same slug for two different post types.
Best regards,
PeterHey!
Try to insert following code into the functionsphp file (at the very bottom):
add_filter('avf_avia_get_the_ID','avia_homepage_id_workaround', 10, 1); function avia_homepage_id_workaround($id) { $id = get_the_ID(); return $id; }
If the code doesn’t help try
add_filter('avf_avia_get_the_ID','avia_homepage_id_workaround', 10, 1); function avia_homepage_id_workaround($id) { $id = avia_get_option('frontpage'); return $id; }
Cheers!
PeterHi!
Try to open up /wp-content/themes/enfold/framework/php/class-style-generator.php and replace
if($addaction) add_action('wp_head',array(&$this, 'create_styles'),1000);
with
if($addaction) add_action('wp_head',array(&$this, 'create_styles'),1);
Best regards,
PeterJanuary 11, 2014 at 9:10 am in reply to: Is it possible to make a Masonry gallery not fullwidth? #208364Hi!
You can try to change the thumbnail size of the images in the default gallery (i.e. use “No Scaling (Original Width X Original Height)”). Then use following code
#top .avia-gallery .avia-gallery-thumb a { height: auto; width: 20%; }
to change the width of the images in % and the height:auto attribute will make sure that the images are not cropped.
Best regards,
PeterJanuary 10, 2014 at 5:25 pm in reply to: Cart Drop Down and WPML String Translation Compatibility Issues #208076Hi!
Please create me an admin account – I’ll activate/deactivate the string translation module and compare the source code.
Cheers!
PeterJanuary 10, 2014 at 3:23 pm in reply to: Cart Drop Down and WPML String Translation Compatibility Issues #208039Hi!
But if you always want to show the cart just insert following css code into the quick css field
.cart_dropdown { right: -2px !important; }
Best regards,
PeterJanuary 10, 2014 at 3:19 pm in reply to: Cart Drop Down and WPML String Translation Compatibility Issues #208038Hey!
Maybe I’m missing something but I couldn’t reproduce the issue: http://www.screenr.com/HxsN
Regards,
PeterJanuary 10, 2014 at 3:10 pm in reply to: Cart Drop Down and WPML String Translation Compatibility Issues #208030Hey logishkas!
No, can you post a link to your website please (where we can reproduce the issue).
Best regards,
PeterJanuary 10, 2014 at 1:17 pm in reply to: Paypal error "We were unable to decrypt the certificate id." #207983Hi!
I just found: http://optiontech.blogspot.co.at/2010/04/how-to-fix-paypal-error-we-were-unable_18.html – you can try this fix. If it doesn’t help try to insert the button code with a shortcode – i.e. use this plugin: http://wordpress.org/plugins/insert-html-snippet/ to insert the button html code.
Cheers!
PeterJanuary 10, 2014 at 1:13 pm in reply to: Paypal error "We were unable to decrypt the certificate id." #207981Hi!
Please give me admin rights :)
Cheers!
PeterHey brijesh1111!
I recommend to click the “Import dummy data” button on the theme option page (Enfold > Theme Options). It will import some demo content (including the LayerSlider page) which can be used as a starting point.
Best regards,
PeterHey studiotopo!
Please try to insert following code into the quick css field
@media only screen and (max-width: 989px) and (min-width: 768px){ .responsive .mobile_menu_tablet .main_menu { display: block; } }
Cheers!
PeterJanuary 10, 2014 at 12:50 pm in reply to: Manual sort order in gallery lost after clicking button "Add/Edit Gallery" #207966Hi!
You can suggest the Nextgen Gallery integration here: https://kriesi.at/support/topic/enfold-feature-requests/ – if more users request it we’ll look into it.
Cheers!
PeterHi!
Please provide a link to the website – I’ll check it with IETester.
Regards,
PeterJanuary 10, 2014 at 12:37 pm in reply to: Paypal error "We were unable to decrypt the certificate id." #207955Hi GARTLANS!
Please create us an admin account and we’ll check the configuration – maybe we can solve the issue.
Cheers!
PeterHi!
Great – thank you. We’ll include it with the next theme update.
Regards,
PeterHey Johannes!
Please try to increase the allocated php mermory to 128M. You need to modify the wp-config.php file – see: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Regards,
PeterHi!
Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to search for all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
Cheers!
PeterHey!
Enfold should display a language switcher as soon as you activate WPML. It seems like WPML is not activated at the moment and thus you can’t see/use the language switcher. The language switcher will be displayed at the top menu (i.e. like here: http://goo.gl/v5TMq3 ).
Best regards,
Peter -
AuthorPosts