jordib
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Woocommerce 3.5 updateOk, thank you so much @modernnerd and @frenchomatic.
Crashed I mean HTTP ERROR 500. No errors in PHP error log. Maybe the issue is related with other third party plugin.
I’m trying to find what’s causing the error. I’ll tell you when I know.Thanks again,
JordiForum: Plugins
In reply to: [Login for WordPress] Translate Continue with facebook & Continue as…Thank you for the answer Damian,
I don’t know why but the button continue_with it is shown in english and it is not translated in my site language.
Finally I changed your plugin files to show the login_with button and this button appears in the language of my site.
For me it is enough :)!Best regards,
jordiThanks, now I see more clear everything. I don’t know what I was thinking about when I code this, because it’s clear I’m mixing php and html :S:S. I will update the solution.
Thank you very much for the support.
Hi again,
I’ve been trying to custom coding for this functionality, but still not working, could you just tell me if I’m in correct way to find the solution trying to display the following function example:
function events_content() { global $EM_Booking, $EM_Event; $EM_Booking = $EM_Event->get_bookings()->has_booking(); echo EM_Events::output(array('scope'=>'past', 'owner'=>bp_displayed_user_id(), 'format'=>' <div class="EM_score_name">#_EVENTNAME</div>' if( is_object($EM_Booking) && !get_option('dbem_bookings_double') ){ '<p>Im event attendee</p>' } else{ '<p>Im not event attendee</p>' )); }
For sure is wrong because website crashes.
Thank you very much in advance. Any help appreciated.You made my life with options.php. I didn’t know about this.
Thank you very much!!
Hi again;
If you want to use shortcodes in a widget you should add this code in your functions.php file of your theme
add_filter( 'widget_text', 'shortcode_unautop'); add_filter( 'widget_text', 'do_shortcode');
Hope it will help you.
Hi,
I think you should put this code where EM html code is accepted; For example in HTML widgets of your theme or in EM–>settings–>formats.
You also can use something like this:
[events_list scope="future" category="ID"] <li>#_locationlink</li> [/events_list]
Replace ID for category single id, slug or comma-separated ids or slugs (e.g. “1,categories-slug,3”) to limit the search to events in any of these categories. You can also use negative numbers and slugs to exclude specific categories (e.g. -1,-exclude-categories,-3)
I hope it will be useful for you, I’m not an expert of EM plugin but I always look in the documentation because is very completely and helpful EM documentation. Maybe an EM expert can help you more than me.
- This reply was modified 7 years, 6 months ago by jordib.
Are you looking for something like that?
{has_tag_X}#_LOCATIONFULLLINE{/has_tag_X}
Replace X with whatever tag you are searching for.