yulichka
Forum Replies Created
-
Forum: Plugins
In reply to: [Accept Stripe Payments] Skipped Order@alexanderfoxc, just wanted to clarify that both PHP and plugin debug logging in plugin settings have been enabled the whole time, even during the time that the original issue happened.
That being said, I think that we will need to close this issue until it happens again, when we can hopefully see what could be the cause.
Thank you for your help and time thus far!!
Forum: Plugins
In reply to: [Accept Stripe Payments] Skipped OrderThank you for this tip, @alexanderfoxc.
It looks like error logs get cleared out daily, because I just checked both and the results are:
- A blank php-error.log
- “[12/09/2019 2:06:31 PM] – Stripe Payments debug log file” in the Stripe Payments Debug Logging, which was on at the time of the missed order.
Is the best course of action to wait until this happens again and check the debug logs at that time? Is there a way to access past Stripe Payments Debug Logs?
Forum: Plugins
In reply to: [Accept Stripe Payments] Duplicate emails to buyer and sellerWhen we have “Send Emails in Parallel” turned on, we get 4 emails instead of 2.
Forum: Plugins
In reply to: [Accept Stripe Payments] Duplicate emails to buyer and seller@mra13 We are on PHP 7.2
@mbrsolution, I did see that linked solution and I would like to implement it.
My question is about how I would add the tax option to the [accept_stripe_payment] shortcode. Is there a field like [accept_stripe_payment tax=”.03″] that I can use with my shortcode?
Thanks for the follow up, Vasyl!
I tried to do a combination of clearing the wpaccess_ values and updating to AAM 2.0 alpha2, but still no luck with the problem.
Is there a way to add AAM Manage Capability via the database?
Either way, I’ll stand by for the script. Спасибо!
The “Event tooltips format” field is inside of the “Full Calendar Settings” section in the General tab of the Event Manager settings page.
So, perhaps you’re looking at the settings of the wrong plugin?
Though the fact that they were there a few days ago is strange. Did you do an update or anything?
Forum: Plugins
In reply to: [Plugin: WP FullCalendar] Events Manager = Empty CalendarIt ended up being a conflicting jQuery problem.
My theme was pulling in an older version, while the plugins were using the newest. I deleted the function that called for the old version and everything started working.
Hope that helps! Good luck!
Forum: Plugins
In reply to: [WP FullCalendar] [Plugin: WP FullCalendar] Tooltip Stuck LoadingTo anyone experiencing the same thing —
All you have to do is go to Events > Settings > General Tab > Full Calendar Options and insert some placeholders into the “Event tooltips format” textbox.If it’s empty, you’ll get the “Loading…” issue
Geez. Maybe a WordPress moderator could delete that post.
I used these shortcodes:
[events_calendar]
[event_search_form]
[events_list]and can customize from there.
Forum: Themes and Templates
In reply to: Creating a custom field a client can edit in theme's header fileGreat! I’ll play around with that.
Thanks a lot!!
Forum: Themes and Templates
In reply to: Creating a custom field a client can edit in theme's header fileOh, I’m using Blank Theme and building as I go along.
The site is here: https://wolandtech.com/davidsoncenter/ and the phone numbers are going in to the right of the “Get Started Today!” in the top right.
Forum: Fixing WordPress
In reply to: wp_list_pages, sub navigation, and the blog pageHaha, I don’t understand what it means either, but you did it! It’s solved!
The final code turned out to be:
<?php $current_page = ''; if (is_page() and ($notfound != '1')) { $current_page = $post->ID; } if( !is_page() && is_home() and ($notfound != '1') ) { $current_page = get_option('page_for_posts'); } if( $current_page ) { while($current_page) { $page_query = $wpdb->get_row("SELECT ID, post_title, post_status, post_parent FROM $wpdb->posts WHERE ID = '$current_page'"); $current_page = $page_query->post_parent; } $parent_id = $page_query->ID; $parent_title = $page_query->post_title; if ($wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = '$parent_id' AND post_status != 'attachment'")) { ?> <ol> <?php wp_list_pages('sort_column=menu_order&title_li=&child_of='. $parent_id); ?> </ol> <?php } } ?>
For other people with the same problem, this code makes a sub navigation that shows up on the posts page and shows a parent’s child pages while on a child’s child pages.
You’re the best, alchymyth, thank you!
Forum: Fixing WordPress
In reply to: wp_list_pages, sub navigation, and the blog pageI see what you mean. I wouldn’t have even known to look into that.
I tried this:
[Code moderated as per the Forum Rules. Please use the pastebin]but no luck so far. I could be getting the coding wrong. Is it okay to have the two if statements together like that? Doesn’t seem right to me.
Thank you so much, by the way, for helping out.
Forum: Fixing WordPress
In reply to: wp_list_pages, sub navigation, and the blog pageWell.
I found the quick & dirty solution:<?php $args = array( 'numberposts' => 3 ); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <div class="post"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php twentyten_posted_on(); ?> <?php the_content(); ?> <?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?> </div><!--END .post--> <?php endforeach; ?>
That code in a template that’s not designated as a Posts page.
If anyone can think of something cleaner, I would still love to hear it. Thanks!