ositive
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Get post_idIt works great! thank you!
I’ll try the same approach for the other templates!
Thanks
OsitiveForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Get post_idThanks!
I used the following code:
$events = EM_Events::get( $args );
foreach ( $events as $EM_Event ){
echo $EM_Event->post_id .”;”;
}obtaining var_dump($EM_Event) equal to “847;190;187;476;822;NULL”
the problem is that I need a string, in order to pass it to my shortcode, but $EM_Event is not a string: How can I get the string like “847;190;187;476;822” from $EM_Event?Thanks
OsitiveHi @caimin_nwl
Two possible scenarios (with the first one preferred):
1- Use my own template to show the event list (created with another plugin) using a shortcode: to do that I need to get the event post IDs from $args variable, passing the IDs to the shortcode (also considerig what filtered with the events search form): is it possible to get the post ids from $args (or is there any way to get the ids?)
2- second possibility (if the first one is not possible): I would like to show the event category list like the events list template. I have styled the events list in a table with the event image an so on (below the code), an I wolud like to obtain something similar for the category page (that now is only a list of event, if I simply use #_CATEGORYNEXTEVENT).Thanks!
OsitiveEvent list header:
<table cellpadding=”0″ cellspacing=”0″ id=”current-events” >
<thead>
<tr>
<th id=”event-time” width=”150″>Date/Time</th>
<th id=”event-description” width=”*”>Event</th>
</thead>
<tbody>Event list:
<tr>
<td>
#_{d/m/Y} #@_{ – d/m/Y}<br/>
#H:#i -#@H:#@i
</td>
<td>
<div style=”float:left; margin:0px 10px 0px 0px;”>#_EVENTIMAGE{100,100}</div>
#_EVENTLINK<br/>
<i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>
</td>
</tr>Forum: Plugins
In reply to: [qTranslate X] Buddypress emailthank you Paul.
I ran the tool and now the email are all traslated in italian. Anyway q translate x gives one tab for each language, that now are all in italina language, also for english tab. This mean that I have to manually traslate in the three tab to have multilingual email? (different language for different users)Thanks again
Just to say you (and to anybody interested) that I obtained what I was looking for by copying the html of the buddypress email to the one used for wp email (taking into account that though the BuddyPress email template has configurable colours etc, so you need to fill those in inside the HTML)
thanks
OsitiveForum: Themes and Templates
In reply to: [Enigma] Show description fieldThank you!
with “label” (instead of “input”) it did the trick. The only problem is that I have to write in register.php file the code you provided for each label, but what is importat is to achieve the goal!The last think: can you write down the similar code (of the last one you wrote) for popover (I think definitely popover is better because can be used also for mobile media)
very very thanks! ??
Forum: Themes and Templates
In reply to: [Enigma] Show description fieldI think I understood..
If I paste you code in a blank page it works showing me two possible example of what I’m looking for, but I would like to obtain something more (may be too much ?? )
I would like to have tooltip or popover, for example, on registration form field names (username, email and other custom wordpress/buddypress fields)I also tryed to add the code you proposed in description fields, and it seems to do something working, but the field name has a character number limit, so the function is cut (and may be add html in field name is not the best solution).
Another way should be to find the template files introducing the code inside them, but this approach requires to heavily modify core files.Just let me know if I’m right or if you have additional solution to propose
Thanks!!Forum: Themes and Templates
In reply to: [Enigma] Show description fieldI tried to modify the registration page Admin Dashboard >> Pages >> Edit Page “Registration” (that is the page that I’ve set as registration page for buddypress plugin). I pasted the code you provided but I don’t see any change in the regitration page..
May be I have to work direcrly with php/css file? let me know if I have to provide you any additional information..
Thanks
Thanks
As I’m also use Buddypress, Is there any way to obtain a style like the one used by buddypress (so that I can have only one template for all the emails sent by my website)?Forum: Themes and Templates
In reply to: [Enigma] Email settingsI was thinking that email themplate is related to the theme used.. but if I was wrong we can close the topic!!
Thanks for the information and for the support!Hi,
I mean the alert email sent to users such us “event approved” notification
thanks!Forum: Themes and Templates
In reply to: [Enigma] Email settingsThank you for the quick response. I will try one of The plugin mentioned, But this function should not be present by default like stated in The Page of the link below?
https://codex.buddypress.org/emails/
THanks again!
Forum: Plugins
In reply to: [WP Ultimate Recipe] Qtranslate compatibilityI found this link
https://qtranslatexteam.wordpress.com/integration/from this support forum:
https://www.ads-software.com/support/topic/integration-to-estatikreal-estate-pluginI don’t know if can help, at list to understand if WP Ultimate Recipe should be compatible. If it is not, please let me know if you plan to make the plugin compatible.
thanksForum: Plugins
In reply to: [WP Ultimate Recipe] Qtranslate compatibilityIt does not seem to use the available translations. I don’t know if it is a compatibility problem with qtranslate x plugin or if it is just mine..
Forum: Plugins
In reply to: [WP Ultimate Recipe] Qtranslate compatibilityI know this solution, but I would like to use the traslations of .mo and .po file for all the lables showed in the front end, such as the input form lables (for the content of the receipt, that I will write, i will use the solution [:XX])
The other solution is rewrite the entire .mo and .po fils with [:XX], but it is not a recommended solution, it is time consuming, and in general it is not necessary for compatible plugin (almost all the plugin I use)