Forum Replies Created
-
AuthorPosts
-
ksministries
ParticipantMy oversight thank you so much.
ksministries
ParticipantThank you that did work but now unfortunately I need to figure out how I can change the text inside the box to black from the default white so that it does not get lost in the new background color which is #eaeaea I know you guys don’t usually get to much into custom design so if this is approaching that I understand thanks again.
ksministries
ParticipantHi and thank you for the reply. I went on and ended up hiding all the featured images with the above code just to have consistency rather than just hiding those that had tickets connected to them. The goal here was to give the user immediate access to the ticket form upon landing on the single event page. I tried for days using the templates to place the ticket form above the featured image but when I could not figure that out I went with this option which was removing all the featured images. Would there be a way to keep the featured image and still get the form to sit above it? Unfortunately that was not one of there options either in the settings area. Thank you again.
ksministries
ParticipantFound fix thank you
ksministries
ParticipantDoes anyone know if this issue was addressed in the recent update of the Event Calendar?
ksministries
ParticipantHello. I uploaded the file with the patch already applied – between lines 213-220 hope this helps. The one other thing I did was to up our WP memory limit to 512 MB. But we did this would only because our site has a high number of plugins running together that might need extra time to process certain actions.
You can achieve this by adding these lines on your wp-config.php file (try to add them before the “/* That’s all, stop editing! Happy blogging. */” line):
define(‘WP_MEMORY_LIMIT’, ‘512M’);
define(‘WP_MAX_MEMORY_LIMIT’, ‘512M’);You can then save the file and try to process one of these Failed scheduled actions to see if the error persists (take in mind that if it gets processed correctly, the related subscription renewal will be processed).
Best wishes.
ksministries
ParticipantHello Brent they did not deal with this in Version 4.7 I had to pay a developer to patch the problem for us until a fix is released. If you are interested I can share the patch with you. It is basically a small edit to the storage.php file in public_html/wp-content/plugins/event-tickets-plus/src/Tribe/Meta. In between lines 213-220 add the following. This will keep your renewals from being placed in hold status and instead with complete the renewal automatically as it should be. Hope this helps.
if ( ! $transient_id && ‘product’ === get_post_type( $id ) && ! is_admin() ) {
// Modified at 03/10/7:30 AM ET for conflict resolution of WooCommerce Subscriptions
// line included with plugin
//$transient_id = WC()->session->get( self::HASH_COOKIE_KEY );
// lines created for conflict resolution
$session = WC()->session;
$transient_id = !empty($session) ? $session->get( self::HASH_COOKIE_KEY ) : false;
}March 10, 2018 at 8:23 am in reply to: ErrorPOST /wp-cron.php Call to a member function get() on null #1475487ksministries
ParticipantIt appears the Event Ticketing Plus plugin subscribes to the “woocommerce_order_status_changed” WP action. The issue is that the Event Ticketing Plus plugin is incorrectly assuming the “woocommerce_order_status_changed” action was invoked by an order being processed in the foreground with a user present. It’s assuming there is either a session or cookie present. To temporary resolve the issue I made an adjustment to the “/home/shoporg/public_html/wp-content/plugins/event-tickets-plus/src/Tribe/Meta/Storage.php” file to detect the empty session
March 9, 2018 at 11:28 pm in reply to: ErrorPOST /wp-cron.php Call to a member function get() on null #1475374ksministries
ParticipantHello again well we tried the memory increase but it did not help we continue to receive an error like in the screenshot provided each time a subscription comes up for renewal thanks in advance for any help you can provide.
March 9, 2018 at 6:34 pm in reply to: ErrorPOST /wp-cron.php Call to a member function get() on null #1475319ksministries
ParticipantI was told that the problem might be a memory limit issue so we have adjusted our memory to see if this helps the problem. If any other suggestions please leave thanks
ksministries
ParticipantWe just updated the plugin manually through FTP
ksministries
ParticipantThank you that did it.
ksministries
ParticipantI sent you a private message with URL after trying the three examples of CSS please let me know if you did not receive it? Thanks again.
ksministries
ParticipantThis reply is private.
ksministries
ParticipantSorry about that because of the red outline we ended up not using the code thou I did just re-add it long enough to take a screenshot for you. Thank you again for your continued support.
-
AuthorPosts
