Alexandru Muscalu
Forum Replies Created
-
Forum: Reviews
In reply to: [Zoom Image] Simple and effective!Hello akanale,
Thanks for your review and for using our plugin.
We have released a new version of Zoom Image which includes zooming over variations images.Thanks,
Alexandru MuscaluForum: Reviews
In reply to: [Zoom Image] examples and developer site neededHello johnlunceford,
Zoom Image adds zooming feature over WooCommerce featured image and thumbnails. I see you are saying it does not work, have you checked the support tab ? There are other members who had troubles and have asked me to help them before giving a review.
Please check this support page where what you have asked it’s described there.Thanks,
Alexandru MuscaluForum: Plugins
In reply to: [Zoom Image] Zoom effect not working on variation imagesHello adrianovarlotta,
We will upgrade this plugin to support variations but it will somewhere in February.
Thanks
Forum: Plugins
In reply to: [Zoom Image] Zoom effect not working on variation imagesHello,
Currently Zoom Image is not supporting variations.
We are working on a new update that will have this new functionality.Thanks
Forum: Plugins
In reply to: [Zoom Image] Zooming not working at allHello Kalyan,
I’ve checked up your website. For testing purpose please try adding a large image as a featured image. My image with the cake has 1600×1000, you can view it here.
Forum: Plugins
In reply to: [Zoom Image] Zooming not working at allHello,
“Zoom Image” zooms the featured image and the thumbnails of a WooCommerce product.
You can check here an example of it by hovering your cursor over the image.What version of WooCommerce do you have installed ?
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] PlaceHolder BugThat helped, it’s working great.
Helpful plugin and deserves a 5 star.Thanks
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] PlaceHolder BugAlso another think that is not working for me.
Once I place an order I get the email but every field that is added or has been changed (name or label) with the plugin is not showing in the backend and also is not showing in the email.
Can you please check ?
Forum: Plugins
In reply to: [Zoom Image] Doesnt do anything in 3.5.2Hello,
We have tested the plugin on WordPress v3.5.2 with WooCommerce v2.0.12.
What version of WooCommerce do you have installed ?Forum: Plugins
In reply to: [Zoom Image] z indexHello,
A new version has been released.
We have modified the z-index from 999 to 2147483647.
Also under “Settings” you will find Zoom image with two new features.Thanks!
Hi,
I have version 0.8.3
At line 502 you will find the function reset_shortcode.
This function should be replaced (from line 502 to 525) with:function reset_shortcode($atts) { $s8_internal = $hide_links = ''; extract(shortcode_atts(array('s8_internal' => 'false', 'hide_links' => ''), $atts)); $action = 'reset'; if($s8_internal == 'true') { $args = array('forgot' => false, 'register' => false, 'login' => false); $form_text = get_option('s8_custom_login_form_text'); if(!is_array($form_text)) $form_text = array(); if($form_text[$action]) { if(strpos($form_text[$action], '%FORM%') !== false) { $output = explode('%FORM%', $this->prepare_content($form_text[$action]), 2); echo $output[0]; s8_clr_get_form($action, $args); echo $output[1]; } else { echo $this->prepare_content($form_text[$action]); s8_clr_get_form($action, $args); } return true; } } $tmp = array(); if(!empty($hide_links)) { // Hide our links! $hide = explode(',', $hide_links); foreach($hide as $link) { $link = strtolower(trim($link)); if($link == 'login') $tmp['login'] = false; elseif($link == 'register') $tmp['register'] = false; elseif($link == 'forgot') $tmp['forgot'] = false; } } $args = array_merge(array('forgot' => true, 'register' => true, 'login' => true), $tmp); ob_start(); s8_clr_get_form($action, $args); return ob_get_clean(); }
If you fail to find this function maybe you have another version and I advice you to update and apply the fix.
Please see also my previos post and replace the code in file /inc/forms.php also.Hope this helps.
Have founded a fix for this problem.
The last line (
return false
) in function “reset_shortcode” from file ‘s8-login-registration.php’ must be replaced with:$tmp = array(); if(!empty($hide_links)) { // Hide our links! $hide = explode(',', $hide_links); foreach($hide as $link) { $link = strtolower(trim($link)); if($link == 'login') $tmp['login'] = false; elseif($link == 'register') $tmp['register'] = false; elseif($link == 'forgot') $tmp['forgot'] = false; } } $args = array_merge(array('forgot' => true, 'register' => true, 'login' => true), $tmp); ob_start(); s8_clr_get_form($action, $args); return ob_get_clean();
Need also to replace following line from file ‘/inc/forms.php’:
<form name="pass-reset" action="<?php echo home_url('/'.s8_login_registration::ep_login.'/?action=rp&key='.$_GET['key']); ?>" method="post" class="s8_form reset_form">
with:
<form name="pass-reset" action="<?php echo home_url('/'.s8_login_registration::ep_login.'/?action=rp&key='.$_GET['key'].'&login='.$_GET['login']); ?>" method="post" class="s8_form reset_form">