winterglow
Forum Replies Created
-
Forum: Plugins
In reply to: [Magic Embeds] Change the time zoneI’m having the same problem, event times are about an hour off. I’m playing with the WordPress time zone settings to get the event time to show the correct time, but it doesn’t seem to recognize half-hour increments.
For example, my first event is at 9:30am, but the plugin is displaying 9:00am. My time zone is set to UTC-7:30. If I move it to UTC-7, no change in what the plugin shows. But if I move it to UTC-6:30, the plugin then displays 10:00am. I have the plugin set to “Show events on local time”. Any ideas?
In the above example I’m referring to the event on 9/13 on this homepage: http://www.divinetours.ca/
Thanks,
AmyI have the Pro version.
Regardless, on this plugin’s description it says: “Checkout without account.” Is there a way to checkout without an account that does not use Express Checkout?
I notice that in test mode (using Sandbox PayPal) that the option to pay without an account on the PayPal page is NOT there, but when not in test mode then I CAN pay with credit card without an account.
With the free version, can you confirm that the buyer does NOT need a PayPal account to pay with a credit card? Just trying to give an accurate quote to my client.
Forum: Fixing WordPress
In reply to: 403 error for custom permalinksFixed! I had to add /index.php/ to the beginning of the permalink structure, thanks to the link on Using_Permalinks. No .htaccess file was required at that point; WordPress took care of it.
I believe this must be a Windows server because I’ve encountered this problem before where URLs had to contain index.php. I was under the impression it was Linux based on the phpinfo file. I learned a lesson to always find out these details from the host first.
Thanks for the security tips!
Forum: Plugins
In reply to: [IvyCat AJAX Testimonials] How to make "All Testimonials" link not rotateYou might try adding the link to the <h3> or whatever title you have above the testimonials, then it won’t fade. I was able to do this on line 215 of ivycat-ajax-testimonials.php:
New line 215:
$contents .= ( $title) ? ‘<h3>‘ . $title . ‘</h3>’ : ”;Forum: Plugins
In reply to: [IvyCat AJAX Testimonials] Nav ButtonI’d like to add a prev/next button or navigation to my testimonials, because there are a lot of them. I know this functionality isn’t built in, but is there a way I can implement it? I notice your image slider has this ability.
Thanks,
AmyForum: Plugins
In reply to: [IvyCat AJAX Testimonials] Feature Request: has_archiveSolved my own problem!
Just needed to use <?php query_posts( ‘post_type=testimonials’); ?> in my template.Forum: Plugins
In reply to: [IvyCat AJAX Testimonials] Feature Request: has_archiveThanks for the above functions. This worked for me and I’m able to see all the reviews on an archive page: http://test.winterglow.com/testimonial-group/testimonials
Now, how can I get the reviews to show up on my Reviews landing page – http://test.winterglow.com/reviews-testimonials? As a work-around, I’m redirecting my Reviews page to the archive page, but I’d rather be able to eliminate the directory ‘testimonial-group’ from the URL. Any ideas on how to load the archive page inside a page template? I tried ‘get_template_part( ‘loop’, ‘reviews’ );’ to load my loop-reviews.php, but that’s not working.