sara.mansouri
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] em-my-bookingsHi @caimin_nwl,
Thanks for your reply and I’m sorry for not being clear enough. I need to add a navigation menu item that links to “my bookings” page, so the users can navigate to bookings page from the navigation menu.
The problem is the url of “my bookings” page is not static and depends on the username
/members/username/events/attending/ so I don’t know how to link into that page.It would be easy if there is a short-code to [em-my-bookings] so I can use the shortcode in a new page and use the static URL of that page for the menu item.
All the Best,
SaraHi @grid24,
I have the following type of SQL query for garbing data. It’s works nicer if you make a view in phpmyadmin using this query and then use that view.
select
a
.umeta_id
ASumeta_id
,
a
.user_id
ASuser_id
,
a
.meta_key
ASmeta_key
,
a
.meta_value
ASmeta_value
,
c
.meta_value
ASnickname
from (
wp_usermeta
a
joinwp_usermeta
c
on(((a
.user_id
=c
.user_id
) and (c
.meta_key
= ‘nickname’))))All the Best,
SaraThanks turning off the cache solved my problem and it is working nice now.
All The Best,
SaraThank you so much!
I am now using the following short-code and it works great!
[events_list_grouped mode=”daily” category=”eu_sessions”]All the Best,
SaraThanks, this problem is solved by using wpDataTables plugin and it is working nice. But the problem is the users still see the old values in their profile forms until they change something and update the form, then they will see the correct value which is updated by admin. It would be wonderful if you can give me a hint to figure out the problem.
(There is a field called confirmation number that Users can not edit on the profile form, Admins change it for all users and users should be able to see the updated values on their profile form)Thanks,
SaraForum: Plugins
In reply to: [WP Business Intelligence Lite] Display charts in backendHi @phplatypus,
Does the save as CSV work for you in the backend? For me it doesn’t. Any ideas how to solve it?- This reply was modified 7 years, 10 months ago by sara.mansouri.
Thank you @borisv! Yes, the default page for the profile forms is user page and after submission is goes to(or stays in) the users page. However I am using the form short-code in another page, and after submission it should stay in the same page. It shouldn’t redirect to user page.
- This reply was modified 7 years, 10 months ago by sara.mansouri.
Thank you @borisv for your reply! Actually that setting is for registration forms, but my question is about profile update forms.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Activity rating issuessorry for asking many questions. I think I should separate my questions in 5 topics, right?!
I just understood that Wamp converts tables’ names into lowercase. And when you move your website from local machine into Linux server due to mysql database case sensitivity in table names, this causes the website to not load and present you with a bunch of error messages.
To prevent this, do these steps:
open your MySQL configuration file(mine was in: C:\wamp\bin\mysql\mysql5.5.24)
look up for: # The MySQL server [mysqld]
add this right below it: lower_case_table_names = 0
save the file and restart MySQL servicehttps://localhost/phpmyadmin/index.php?db=9feb&token=45792532ccff6f4bd2fd1431bfa8fdd2
It solved my problem I hope it helps others as well. When I was searching for this problem I have noticed similar issues in the following topics:
https://www.ads-software.com/support/topic/log-entry-is-empty-online?replies=2
https://www.ads-software.com/support/topic/mycred-log-is-empty?replies=9
https://mycred.me/support/forums/topic/automaticly-assign-rank-to-users/#post-4803
https://mycred.me/support/forums/topic/table-oky-wp_mycred_log-doesnt-exist/in “Invite Settings” of the plugin,Choose Custom setting radio box and then in
signup setting, the signup page has to be entered properly according to URL of registration page of your website:I have used the following code that you provided in the following link and it works. Thank you.
I want to let users edit or delete their posts from front end. There was some when I wanted to use WP frontent plugin as it tries to delete permanently instead of moving to trash. Now I use Frontier Post plugin and it works fine.https://mycred.me/support/forums/topic/deduct-points/
add_action( ‘transition_post_status’, ‘fired_on_post_change_staus’, 10, 3 );
function fired_on_post_change_staus( $new_status, $old_status, $post ) {
if ( $new_status == ‘trash’ ) {
if ( ! function_exists( ‘mycred_add’ ) ) return;if ( isset( $post->post_author ) ) {
mycred_add(
‘deleted_post’,
$post->post_author,
-10,
‘%plural% deduction for deleted post’
);
}
}
}Oh thanks!:)
Yes it works!Hi Gabriel,
Thanks for your care. As It’s very hard to judge and rate a post just with one simple 5-star rating, Multi-criteria ratings and reviews are getting more and more popular.
I believe these two plugins (specially first one) could be very good replace for GD-star rating:https://www.ads-software.com/plugins/wp-review/screenshots/
https://www.ads-software.com/plugins/universal-star-rating/screenshots/
Thanks,
sara