dennishall
Forum Replies Created
-
One other thing i had not mentioned.
I also did reset the form and save it using your Reset button in the admin screen even after I had deleted the custom fields.
This also did not work.My checkout page is completely unusable now.
Forum: Plugins
In reply to: [BadgeOS] Unable to override CSSResolved. Client has Sucuri caching the site.
Forum: Plugins
In reply to: [Amazon Link] Short codes not renderingSame issue here.
The shortcodes are not rendering in the website.
I’m also seeing the following errors in the page editor > Add Amazon Link metabox:Notice: Undefined index: form_channel in /var/www/html/wp-content/plugins/amazon-link/include/insertForm.php on line 153
Notice: Undefined index: form_s_index in /var/www/html/wp-content/plugins/amazon-link/include/insertForm.php on line 154
Notice: Undefined index: form_template in /var/www/html/wp-content/plugins/amazon-link/include/insertForm.php on line 155
Forum: Plugins
In reply to: [Theme My Login] WooCommerce and TML Password Reset link issueThanks for the feedback Jeff:
Would this not be a consistent issue then?
Is there a method of forcing TML to to activate this function before or after Woo?Where I’m baffled is the inconsistency of the conflict / symptom. The “hit and miss” aspect.
Forum: Plugins
In reply to: [Theme My Login] WooCommerce and TML Password Reset link issueI failed to mention in my OP…
When I disable WooCommerce, the Theme My Login password resets are perfect, they never fail.
- This reply was modified 4 years, 9 months ago by dennishall.
Thanks. That resolved both the course catalog and the dashboard / my courses issue.
I repeat: Your shortcode is useless because it only uses the post_id and not the Oder ID (which can be configured). Not an option.
Staging site with only LifterLMS plugins enabled and no Divi child-theme enabled.
This is as bare-bones as it gets and clearly demonstrates the LifterLMS course catalog number of courses displayed is not being respected.LifterLMS System Report: Wordpress ------------------------------------------- Home Url: https://www.domain.com/staging Site Url: https://www.domain.com/staging Login Url: https://www.domain.com/staging/wp-login.php Version: 5.2.4 Debug Mode: No Debug Log: No Debug Display: Yes Locale: en_US Multisite: No Page For Posts: Not Set Page On Front: Home (#5) [https://www.domain.com/staging/] Permalink Structure: Show On Front: page Wp Cron: Yes Settings ------------------------------------------- Version: 3.36.2 Db Version: 3.36.2 Course Catalog: Courses (#178) [https://www.domain.com/staging/?page_id=178] Membership Catalog: Membership Catalog (#3842) [https://www.domain.com/staging/?page_id=3842] Student Dashboard: Dashboard (#3844) [https://www.domain.com/staging/?page_id=3844] Checkout Page: Purchase (#3843) [https://www.domain.com/staging/?page_id=3843] Course Catalog Per Page: 24 Course Catalog Sorting: menu_order,ASC Membership Catalog Per Page: 12 Membership Catalog Sorting: menu_order,ASC Site Membership: Not Set Courses Endpoint: my-courses Edit Endpoint: Lost Password Endpoint: Vouchers Endpoint: Autogenerate Username: yes Password Strength Meter: yes Minimum Password Strength: strong Terms Required: no Terms Page: Not Set Checkout Names: required Checkout Address: required Checkout Phone: optional Checkout Email Confirmation: yes Open Registration: no Registration Names: required Registration Address: optional Registration Phone: hidden Registration Voucher: optional Registration Email Confirmation: no Account Names: required Account Address: required Account Phone: optional Account Email Confirmation: yes Confirmation Endpoint: confirm-payment Force Ssl Checkout: no Country: US Currency: USD Currency Position: left Thousand Separator: , Decimal Separator: . Decimals: 2 Trim Zero Decimals: no Recurring Payments: no Email From Address: [email protected] Email From Name: Domain Email Footer Text: Email Header Image: Cert Bg Width: 800 Cert Bg Height: 616 Cert Legacy Compat: no Gateways ------------------------------------------- Manual: Disabled Manual Logging: Manual Order: 1 Server ------------------------------------------- Mysql Version: 5.6.40 Php Curl: Yes Php Default Timezone: UTC Php Fsockopen: Yes Php Max Input Vars: 3000 Php Max Upload Size: 128 MB Php Memory Limit: 768M Php Post Max Size: 128M Php Soap: Yes Php Suhosin: No Php Time Limt: 120 Php Version: 7.2.22 Software: Apache Wp Memory Limit: 128M Browser ------------------------------------------- HTTP USER AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36 Theme ------------------------------------------- Name: Divi Version: 4.0.2 Themeuri: https://www.elegantthemes.com/gallery/divi/ Authoruri: https://www.elegantthemes.com Template: Child Theme: No Llms Support: No Plugins ------------------------------------------- LifterLMS: 3.36.2 LifterLMS Labs: 1.5.2 WP Staging: 2.6.3 Integrations ------------------------------------------- BbPress: No BuddyPress: No Template Overrides -------------------------------------------
As previously mentioned, the lifterlms_catalog shortcode is useless because you use the post_id and not the post order number – so no control over the sorting.
With only LifterLMS, ListerLMS Helper and ListerLMS Labs enabled, the Course Catalog Per Page: 24 setting still only display 5 courses in the course catalog page.
The Student Dashboard located at: https://www.domain.com/staging/?page_id=3844&my-courses is also still showing up to 24 courses.- This reply was modified 5 years, 1 month ago by Jan Dembowski.
- This reply was modified 5 years, 1 month ago by Jan Dembowski. Reason: Formatting
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] separate domain names?@kionae Can you share any WP-Config and .htaccess parts you have set up to accomplish this. I was previously working on a project to use primary domain names, but the got scrapped so ended up not following through on my Dev server.
Now I’m testing this on my Dev server (NGINX based) where I have full CLI control and not able to get this to work.
Here are my WP-Config settings:
define( ‘WP_DEBUG’, true );
define(‘CUSTOM_USER_TABLE’, ‘wp_abc123_users’);
define(‘CUSTOM_USERMETA_TABLE’, ‘wp_abc123_usermeta’);
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘domain.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
define(‘SUNRISE’, true);My .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]</IfModule>
# END WordPressTIA
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] separate domain names?Thanks for confirming this.
I have been successfully using it for sub-domains and do see I can add primary domains (or actually whatever I want), but will need to use primary domains for an upcoming project so great to know this does work for you.Forum: Plugins
In reply to: [WP STAGING WordPress Backup Plugin - Migration Backup Restore] WP5.2??Thanks for your quick response Rene:
With the Pro plugin, does it support cloning multi-site when the multi-site is using separate domain names (i.e. not having sub-sites installed in sub-folders)?
Here is my example multi-site setup:
I’m using the WordPress MU Domain Mapping plugin found at:
https://www.ads-software.com/plugins/wordpress-mu-domain-mapping/My sites are setup as domain names wiht this plugin:
https://www.site1.com
https://www.site2.com
https://www.site3.com
etc…
so this does not create sub-folders in WP, nor does it create sub-domains in the WP DB, but it does, of course, create new WP isolated tables in the main DB as normal.Will your plugin work with this setup?
Also, i do not know how many sites this multi-site will be spawning over time, right now the client has identified 3, but I expect more.
Which version of your Pro plugin would I choose as it will be applied to only 1 multi-site installation?- This reply was modified 5 years, 6 months ago by dennishall.
Again, the premium one works so this will also get that update when I have time around end April.
Following the directions provided in my videos will add the field to reports.
Focus on the Advanced tab of the field in question.As for the Select your college field. The premium version does not have this issue. The fix will be added to this free version by end of April when my spare time permits.
Forum: Plugins
In reply to: [Software License Manager] Licenses not expiringI had gone through all my server logs (there are many) to no avail.
I never found a single error in any log.Forum: Plugins
In reply to: [Software License Manager] Licenses not expiringThanks for the speedy reply.
My server is a VPS I had built anew as the License server. I build all my server at the CLI level so I have complete control over everything. I’ve been running it for a couple of years + and updated the server and all PHP modules, Ubuntu and Apache2 last over a year ago.
This is a standalone License server so Woo is installed on my eComm. site and generating licenses on this server.
What i found today is that the license expirations seem to have stopped working last October or November. The dates are there, but the keys are still active well past those dates.
I have now manually expired the license keys for all the affected orders.I’m thinking of moving the License Server onto my eComm site where Woo is installed anyhow as it is what you support. I’m sure it will work fine there.
To bad, I really loved having this as a stand-alone server because it allowed me to manage keys for more than one site.
Anyhow, thanks for these great plugins!
It may not be exactly what I hoped it would be, but it’s still the best license key platform I’ve ever used.Best Regards,
Dennis Hall- This reply was modified 5 years, 8 months ago by dennishall.
Forum: Plugins
In reply to: [LifterLMS BackPack Lite] Add Pinterest “Save” button to registration formClosed