christiemade
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Cron Manager - debug & control] Version 2.5.8 plug-in panel brokenYou can find older versions for download here:
https://wordpress.org/plugins/advanced-cron-manager/advanced/
2.5.7 seems to be better- there’s definitely something wrong with 2.5.8!
- This reply was modified 1 year, 11 months ago by christiemade.
To hack in a fix in the meantime, Just add .qty after input in plugins\woocommerce-payments\dist\product-details.js so
o=t(".quantity input").val()becomeso=t(".quantity input.qty").val()near the end of the file.- This reply was modified 2 years, 9 months ago by christiemade.
Forum: Plugins
In reply to: [Leaflet Map] Multiple Lat/Long markers?Just a typo on my end!
Answer:
[leaflet-map]
[leaflet-marker lat=”” lon=””]
[leaflet-marker lat=”” lon=””]
[leaflet-marker lat=”” lon=””]This video shows what’s going on: First site I look at is main site, you can see the custom meta description does not show up. The video cuts off at the end, but basically, the second site, a sub-site, the description shows up just fine.
https://drive.google.com/file/d/1mUTXLyaeX-3yp812u6gcf0lri_2LJLUK/view
Yes, I have Version 16.4 installed of Yoast and WP version 5.7.2.
I did already check that it wasn’t the theme previously by switching to TwentyTwentyOne, and the problem still happened.
I had not tried the plugins before as we do no have many installed, but I just disabled all except Yoast and it still happens.
Forum: Networking WordPress
In reply to: Multiple Domains Pointing to Same SubsiteThat should work, but you’d have to change the if line to include all those options.
Forum: Networking WordPress
In reply to: Multiple Domains Pointing to Same SubsiteFigured this one out. Here are the steps:
1. I added to wp-config.php
define( 'SUNRISE', TRUE );2. I created a new file: /wp-content/sunrise.php
In this file I added this:
function custom_get_site_by_path($value, $domain, $path, $segments, $paths) { if ($domain == "c.mainwebsite.com") $value = WP_Site::get_instance(3); return $value; } add_filter( 'pre_get_site_by_path', 'custom_get_site_by_path', 10, 5);Where 3 is the site id for b.mainwebsite.com, or the site you want to point to.
3. This plugin installed: https://github.com/straube/multiple-domain
Enabled in my b.mainwebsite.com site. I have c.mainwebsite.com and d.mainwebsite.com set up as Domains in the settings there.- This reply was modified 6 years, 3 months ago by christiemade.
- This reply was modified 6 years, 3 months ago by christiemade.
Yes, that table is empty!
Forum: Plugins
In reply to: [Video Popup – Video Lightbox for YouTube, Vimeo & MP4] Double popup?jQuery UI is installed so I think it’s opening one using ui-dialog and one using the plugin’s modal.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Time not showing on calendarI am having the same issue… version 2.0.5
I was able to create a custom theme and copy over twig/agenda-widget.twig – which is the particular view I was missing a time stamp in.
The code before was
{{ event.get_runtime( ‘start_time’ ) }}I switched it to
{{ event.get_runtime( ‘short_start_time’ ) }}and now the time is showing again.
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Doesn't workThe client didn’t feel like a “thank you” message on the form itself was good enough, and they requested a full thank you confirmation page. Not unreasonable!
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Doesn't workLooking under “MANUAL INSTALLATION”, I just don’t feel the directions imply that the form needs to be on the confirmation/thank you page. It only mentions adding it to the page the form is on. Obviously, my scenario was just a little different from the one implied in the directions, since my form was on another page and redirecting to a single thank you page. Not sure what other people’s excuse is 🙂
I’ve confirmed that adding Subscribe form widget to the thank you page fixed the issue. Thanks for your help!
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Doesn't workI followed directions in ReadMe.txt. It’s not clear that the thank you page URL needs to have code on it, too. I’m still not clear on what needs to happen here – are you saying that if the subscribe form is on the thank you/confirmation page that will fix the problem?
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Doesn't workThanks!