digitaliway
Forum Replies Created
-
Thank you, that worked. Will an update be released to correct that in the future?
Forum: Plugins
In reply to: [Advanced Woo Search] ajax results correct but search page not correctHello, Thank you for responding. I am using theme TOTAL version 5.9. (themeforest.net/item/total-responsive-multipurpose-wordpress-theme/6339019) – (total.wpexplorer.com/docs/changelog/). I am using the elementor pro page builder which styles the shop page product display but no specific templates for search results. Our site is furniturebarnusa.com – search for phrase “swivel bar stool”. Results will be different from the ajax and the search page results will not sort by relevance and seem to be title sorted alphabetically.
this is the page that pagination failed when the update was installed: fox8tv.com/fox-8-news-now/ . I cannot install the updated version to show you the error because we need our site to function properly. the screen shot in this thread shows the error.
Forum: Plugins
In reply to: [Import and export users and customers] User roles not updatingyes, the role exists and the slug is correctly written. I have tried using the checkbox for the default role and that does not work. I tried removing the role column from the csv and using the checkbox default role, that does not work. I also tried add new roles not override and that does not work. I have no idea why there is an “add new roles and not override existing” in the password drop menu, but I did not try that. I was not able to troubleshoot this further because our site needed to go live yesterday so I used an alternate method to re-assign all of the imported users to the correct roles. I appreciate the reply and your time on this.
Forum: Plugins
In reply to: [Import and export users and customers] User roles not updatingI am also having these issues. I am importing 500 users and need them to be assigned to the COMMERCIAL-ROLE. The users import but the role does not update. I made a video of this issue showing it is not working:
See below:
https://share.getcloudapp.com/kpuWrQ7z
please let me know what can be done?
WordPress Theme: Total Child
WordPress Plugins: Gravity Forms, iThemes Security, Classic Editor, Elementor Pro, Elementor, Envato Elements, Gravity Forms Zero Spam, Gravity Forms reCAPTCHA Add-On, Imsanity, Post SMTP, PowerPack Pro for Elementor, Total Theme Core, Yoast SEO, WP Media folder
I am posting the info below with parts I need to remove noted as REMOVED.
Mailer: postsmtp
HostName: REMOVED
cURL Version: 7.84.0
OpenSSL Version: OpenSSL/1.1.1q
OS: Linux REMOVED 3.10.0-962.3.2.lve1.5.70.el7.x86_64 #1 SMP Mon May 30 08:45:55 UTC 2022 x86_64
PHP: Linux 7.4.30 C
PHP Dependencies: iconv=Yes, spl_autoload=Yes, openssl=Yes, sockets=No, allow_url_fopen=No, mcrypt=No, zlib_encode=Yes
WordPress: 6.0.1 en_US UTF-8
WordPress Theme: REMOVED
WordPress Plugins: REMOVED
WordPress wp_mail Owner: /wp-content/plugins/post-smtp/Postman/PostmanWpMailBinder.php
WordPress wp_mail Filter(s): wp_staticize_emoji_for_email, PostsmtpMailer->get_mail_args
WordPress phpmailer_init Action(s): PostsmtpMailer->phpmailer_smtp_init
Postman: 2.1.3
Postman Sender Domain (Envelope|Message): REMOVED
Postman Prevent Message Sender Override (Email|Name): No | No
Postman Active Transport: SMTP (smtp:tls:crammd5://mail.REMOVED.net:587)
Postman Active Transport Status (Ready|Connected): Yes | Yes
Postman Deliveries (Success|Fail): 0 | 0We are using server domain mail. The mail server software is SmarterMail. I can confirm that the passwords work in mail clients and in the webmail interface but fails with the plugin. If you provide me a direct email for you I will send a diagnostic report but I do not want to expose my host info in the forum.
I am using SMTP on port 587 STARTTLS CRAM-MD5. This fails on multiple websites that I tested so it is not just the one website I am working with.
password only/ if I have a password like this: 1aD@#<98+=] it will fail authentication.
below pass Does not work:
1aD@#<98+=]below pass does work:
1aD@#>98+=]thank you for the reply.
Thank you for your reply: Mail Poet Version 3.67.1 is currently installed and it was installed fresh – never used MailPoet on this site before. After install all users were automatically placed in a list called “WordPress Users”. We could not email any users because the status for all users were unconfirmed. MAIL POET > SUBSCRIBERS shows all users as unconfirmed. I went to the list “WordPress Users” and selected all, but there is no option to SUBSCRIBE all as a batch. How can we SUBSCRIBE them all so we can sedn meil to them since they have received mail from us before using a different method? I also tried to make a SEGMENT but all users are UNCONFIRMED so that will not allow mail sending?
I am using the FEEDZY > IMPORTS POSTS > NEW IMPORT
when I create a new import feed there are no setting to have it run once per day. Currently it is using WP Cron and that is running randomly and consuming large amounts of resources. the command it is using for wpcron is not being killed after it runs and the server is maxing out resources on memory which brings the site down.this has noting to do with the shortcode as I am just displaying the posts on the from end from the posts that were brought in by the import.
the import needs more timing control and I do not see any, please advise?
where can I find examples on how to use PHP templates with pods, i looked but could not find any implementation examples?
I started making two functions, but since I am getting a random record I cannot use two functions because they could return two different records each time and I need the same one always returned. I am not sure how to pass a value from one function to the other to make this work but that may be an option.
pulling my hair out on this one LOL.
My function above is not working and I tried different variations with no luck. Can anyone provide me an array example using PODS display so I can get this functional?
I tried the below and was not able to get both variables to display and was hoping you can lead me the in right direction.
code in functions.php child theme:
function output_preroll() {$pods = pods( 'video_preroll', array( 'orderby' => 'RAND()', 'limit' => 1 ) );
$prerollfile = $pods->display( 'video_preroll_file' );
$prerolltitle = $pods->display( 'video_preroll_title' );return array($prerollfile, $prerolltitle);
}in the pods template I then call the each variable like this and it does not display:
{@ID,output_preroll[0]}
{@ID,output_preroll[1]}