dadadmin
Forum Replies Created
-
Update: I was able to create a custom variable for Yoast SEO that would pull in the date anywhere. Now my other issue is that the %%excerpt%% is not reading what I have in the Event Excerpt options “EVENTDATES – #_EVENTEXCERPT” and yes, Override Excerpts with Formats?? is enabled in my settings.
// Create Yoast variable for Event Start Date. function yoast_var1( $var1 ) { global $EM_Event, $wp_query; $date_format = get_option('dbem_date_format'); // This will use the date fotmatting in your EM setttings. $start_date = get_post_meta(get_the_ID(), '_event_start_date', true); $result = date_i18n($date_format, strtotime($start_date)); return $result; } // Define which variable to use in the Yoast snippet box. function create_yoast_variables_for_em() { wpseo_register_var_replacement('%%event_date%%', 'yoast_var1', 'basic'); } add_action('wpseo_register_extra_replacements', 'create_yoast_variables_for_em');
Forum: Plugins
In reply to: [WooCommerce] Fake Woocommerce Spam OrdersHi @roygilsing
I reinstalled the plugin WooCommerce Anti Fraud, and add reCaptcha for WooCommerce to EVERY instance of a login/purchase form. I had it on my main checkout page, but I guess somehow they were getting around it. I can’t say exactly which thing completely solved the issue, but it seems with the combination of fresh files and the right settings on the Anti Fraud, reCaptcha and Wordfence, I haven’t had the issue since.
Here is a screenshot of all my Anti Fraud threshold settings if that’s helpful.
Sorry I never saw this reply. I have tried testing plugin conflicts. I am not using any custom code, just the standard [tribe_events view=”list” category=”promotions”]
I also misspoke about the version, I was at 5.16.4
I have about 15 sites that all use the same features, all with different custom themes, no prebuilt page builders or anything.
I am using Events Calendar and Events Calendar Pro.
Here is what my event settings look like and what it shows up like on the front end (if I remove all formatting). It only shows the one event I have that has a future start date. There are about 10 other events in the backend that are similar to the one in the image link, and none of them are showing
I am experiencing this same issue.
I need to have the redirect on submission set because its a two part form. After we collect their email, we want to try to get them to provide more information on a secondary form.
I have played around with the settings as much as possible, but really need the cookie to be set while the form submission redirect remains in place.
Never mind, it was jetpack adding it.
Update: enabling Dev updates from the EM settings and updating the plugin fixed my issue.
I am having the same issue with the full calendar shortcode, It’s pulling in December 2020 just for the date itself. The calendar is correct and is pulling in the correct events on the calendar, but just the header of the calendar is outputting the wrong month and year.
I have also deactivated all other plugins and themes.
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Separate First and Last NameNever mind, I just realized it was a setting!
This still seems to be an issue.. has anyone else encountered it?
Looks like the newest update fixed this on category shortcodes, but not venue shortcodes
Not sure if this solves your problem or not, but you can use the conditional tags to display different layouts. I use conditional categories to create different single event page layouts and pull in different items depending upon what category it is in.
You could probably make 3 tags and conditionally build the design using and has and has_no respectively for each template
https://wp-events-plugin.com/documentation/conditional-placeholders/
Try this
table.em-calendar { width: 100%; }
And to center the month name try this
td.month_name { text-align: center;}
THANK YOU!!!
I have 7 different donation levels on my form, would I have to replicate this function 7 times?
I want the name of the package and the price to be on one line, and then I want to be able to list everything it includes, one item on each line which is why allowing html in the text field would be easiest.
For example:
Platinum – $3,000
Golf for Four at Ramblewood CC
Prominent Listing in all Advertising
Dinner/Cocktail Hour Sponsorship
Entry for Four to Dinner/Cocktail Hour
A Special Thank You GiftIf I manually enter bold spans or line breaks after each item, it just strips them out upon save
Forum: Plugins
In reply to: [Image Gallery Slider For ACF] Gallery with repeater fieldFor anyone else that is looking to do this I was able to achieve this by changing get_field to get_sub_field.
frontend-gallery-slider-for-advanced-custom-field/includes/shortcodes/fagsfacf-slider.php
on line 111 change
$images = get_field($acf_field_value);
to
$images = get_sub_field($acf_field_value);
I would much rather be able to hook into the plugin instead of overwriting plugin code, but I’m not sure how. The only other drawback is now it can ONLY be used on sub fields. In my case it is fine because I am only using it in one location
- This reply was modified 7 years, 3 months ago by dadadmin.