studioactiv8
Forum Replies Created
-
Just to help out here. The “Visual Editor” 2.7.2 widget does work in the latest versions of PHP 8.0 + .. try using this plugin tool to look at what else might be not able to make the PHP upgrades. PHP Compatibility Checker it is easy to use and you don’t even have to shut your site down to see what plugins will have problems. I have nothing to do with the plugin made by WP-Engine. Cheers, jD
Thanks Craig
That is great news.. the Events Calendar team makes a lot of noise about this being a turning point and I respect that. You all have done such a great job adding on to their tech that I figured it would be safe. I am a Pro user of the Registrations Plugin.. which I recommend to anyone reading this!
roundupwp.com ??Best John
The next Version 22.1 just got released and it works great.. Najeeb offers update and great support!
I don’t have 21.1 but I could share 20 with you?
On our Coffee site the prices don’t work for the larger items. If someone orders a 5 lb bag of coffee it charges the 1 lb bag price. We are running Pro with the PPOM. I just turned off the PPOM off for now. Im sure you guys will sort it out. Thanks, John
I used Version 20.0 for now and it works with the new WooCommerce
- This reply was modified 3 years, 7 months ago by studioactiv8.
Forum: Fixing WordPress
In reply to: Visual Editor not showingTo keep it simple I had these symptoms too..
In the “Users/Your Profile” area
I just made sure my user fields like ‘nickname’ and first and last name.. were filled out. I also ‘checked’ ~ Disable the visual editor when writing.. and saved the user profile. Then I ‘un-checked’ ~ Disable the visual editor when writing.. and saved again.This fixed the issue.. hope this helps someone.
John- This reply was modified 6 years, 2 months ago by studioactiv8.
- This reply was modified 6 years, 2 months ago by studioactiv8.
Noticed the update.. just to let you know the message comes up even if I am running a higher level of PHP. 5.6 etc.
“Responsive Menu requires PHP 5.4 or higher to function and has therefore been automatically disabled. You are still on 5.3.5.
Please speak to your webhost about upgrading your PHP version. For more information please visit this page.”I know all this is maddening. I will probably just go ahead and by the Pro. I know the technology works great in general ??
thanks
this one says where the error is happening ‘line 16’ if that helps ..
Parse error: syntax error, unexpected ‘[‘ in /httpdocs/wordpress/wp-content/plugins/responsive-menu/src/app/Routing/WpRouting.php on line 16Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Advanced Post Types OrderHey Kenneth
I emailed the developer of ‘next-previous-post-link-plus-for-wordpress’ and at the very moment he returned my email. I figured it out too!Very simply use:
<?php next_post_link_plus( array('order_by' => 'menu_order', 'loop' => true, 'link' => 'Next Leader' ) ); ?>
the ‘order_by’ => ‘menu_order’ is the critical element!! ‘Next Leader’ was just my Post Type in that section
Hope this helps you too ??
Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Advanced Post Types Ordersomething that is hang to add to your array to make it so you
don’t hit ‘the end’ of the posts is‘loop’ => true,
Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Advanced Post Types OrderI am trying to make some sense of this post : https://www.nsp-code.com/advanced-post-types-order-api/next-post-link/
Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Advanced Post Types OrderBTW this is the way I was using it in a leadership section~
<?php next_post_link_plus( array('in_same_cat' => true, 'link' => 'Next Leader' ) ); ?>
this is the Loop I used on the initial display of the posts:
<?php query_posts( array( 'post_type' => 'leadership' ) );?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="leaders-block"> <strong><?php the_title(); ?></strong><br/> <?php echo get_post_meta($post->ID, 'ecpt_title', true); ?><br /> <a href="<?php the_permalink(); ?>">Read More</a><br /></div> <?php endwhile; ?> <?php endif; ?> <?php wp_reset_query(); ?>
Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Advanced Post Types OrderThanks ! will send them a question.. if I find anything I will post it here. The ‘Next/Previous Post Link Plus’ was free.
Forum: Plugins
In reply to: [Ambrosite Next/Previous Post Link Plus] Advanced Post Types OrderI noticed this too.. it had been working fine. Did you find any way to work around this?
thanks!
Forum: Plugins
In reply to: [Kimili Flash Embed] Not working since WordPress 4.0.1 updateThat is a little weird .. just putting <!-[kml_flashembed
worked for me too.THANKS!