digitaliway
Forum Replies Created
-
I do not have any custom code. I tested with all add-ons disabled error remains. I also deactivated all plugins except for gravity forms and pods and the error still displays. This error only happens when I save a pod.
Forum: Plugins
In reply to: [Dynamic Conditions] hide dynamic page title if on home pageAWESOME! This is exactly what I needed and easier than I thought. Keep up the great work on this plugin.
Forum: Plugins
In reply to: [Dynamic Conditions] hide dynamic page title if on home pagethank you for responding. can you please provide an example? are you saying this is not a feature and I need to write a custom function?
for conditions I was hoping there could be a show / hide “if page id or array equals”. is that something you could consider for future release?
on hold status is a good approach and should work for me. hopefully in the new code base the “processing status” new order emails will work.
originally I did apply the fix below using a function and it worked with the processing status, but was sending two New Order emails instead of just one.
add_action( 'woocommerce_order_status_processing', 'custom_status_email_notification', 20, 2 );
function custom_status_email_notification( $order_id ) {
$mailer = WC()->mailer()->get_emails();
$mailer['WC_Email_New_Order']->trigger($order_id);
}I have confirmed that this is a bug with the settings. POS > SETTINGS > CHECKOUT > ORDER EMAILS – if you set the completed order status to PROCESSING and CHECK the boxes ENABLE ADMIN EMAIL and ENABLE CUSTOMER EMAIL (No ADMIN new order emails will be sent). This is extremely frustrating to not have the developer looking into this and I do have the PAID PRO VERSION.
If anybody else has experienced this and can reply back with a fix I would appreciate it.
Forum: Plugins
In reply to: [Ultimate Reviews] validation on additional fields not workingif I do not select the stars validation displays which is correct, but then when I do select the stars the validation text still remains.
also the validation text keeps repeating and stacking for each submission which is not correct.
see update video:
https://cl.ly/8ee0ad872017Forum: Plugins
In reply to: [Ultimate Reviews] validation on additional fields not workingThe problem still remains. type in a title and a comment then click submit twice or three times.
see the video showing the validation errors and the sequence below:
Forum: Plugins
In reply to: [Ultimate Reviews] review form indepth fields and layout changethank you for looking at this and I was doing some tweaking. for in-depth reviews there really needs to be FIELD NAME and FIELD DESCRIPTION so that I can reduce the question text and then show a description below each field name. can you add in that functionality or let me know how I can do this?
also in your code line 344 in SubmitReview.php there is a css error where the css. when I was fixing the layout I needed to target the email field but it was referencing author (see below)
$ReturnString .= “<input type=’email’ name=’Post_Email’ id=’Post_Email’ value='” . $_REQUEST[‘Post_Email’] . “‘ required/>”;
//COMMENT CSS CHANGE ewd-urp-author-explanation NEEDED TO BE ewd-urp-email-explanation
//$ReturnString .= “<div id=’ewd-urp-author-explanation’ class=’ewd-urp-review-explanation’>”;
$ReturnString .= “<div id=’ewd-urp-email-explanation’ class=’ewd-urp-review-explanation’>”;Forum: Plugins
In reply to: [Ultimate Reviews] review form indepth fields and layout changebelow is the link to click on the button to open the form.
https://iol.digitaliwayhost.net/product/symfony/Forum: Plugins
In reply to: [Ultimate Reviews] review submission message and error not prominantthank you for looking – this is a work in progress and is not live yet:
https://iol.digitaliwayhost.net/iol-ratings/currently all reviews are expanded so when a new review is submitted it will scroll you to the top due to page refresh.
the beta update resolved the issues for me and I am now able to edit with wpbakery page builder.
- This reply was modified 5 years, 7 months ago by digitaliway.
Thank you for the quick reply, that worked perfect and I was able to find the from address issue, but will keep the function handy jut in case.
Forum: Plugins
In reply to: [WP Email Users] subscribe adn unsubscribeI appreciate your responses. I really like the functionality of your plugin, but without a way for users to unsubscribe when having a user account and being in a role we are not meeting the General Data Protection Regulation (GDPR) requirements. I know this is a free plugin, but do you have any plans to offer a premium plugin with users being able to go to their profiles and unsubscribe from mailings?
Forum: Plugins
In reply to: [WP Email Users] subscribe adn unsubscribeI see your shortcode, but I am emailing to a ROLE not a LIST. Is there a way to unsubscribe someone if they have a user account with a specific role assigned? I looked at the users and your plugin does not create a checkbox in the user profile for UNSUBSCRIBE from mailings?
Forum: Plugins
In reply to: [WP Email Users] subscribe adn unsubscribethank you for the reply but I need in instructions on how to setup the the unsubscribe and subscribe page in the settings area? I have the email shortcode working but clicking the links does not function.