Steeven
Forum Replies Created
-
I get the exact same error and suspect it to be due to the resent update of WordPress and this plugin. Hope it will be fixed soon.
Thanks for reply. Please let me know if such development is done in near future – I will be very interested.
Best regards, and have a good weekend.
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Is there no documentation?Thank you very much for reply and link.
Hi.
Thanks for the reply. I have no other plugins that interfere with roles or capabilities. Not bbPress, and not any other.The most obvious symptom is that a role that is a copy of the administrator role, CAN’T edit user information of administrators, even though the administrator role still can.
It seems there must be underlying capabilities that are not possible to change with this plugin. Some fundamental capabilities not shown in the plugin’s capabilities page that are unique to administrators no matter what.
Don’t know what to look for…Thanks.
The update_core, update_plugins, edit_users, etc. capabilities are all checked. Actually one of the new roles is simply a copy of the administrator role, without any changes.
A new role like this is limited, as I mentioned, but it can handle plugins and update though; I was wrong before sorry.
But e.g. this new role can’t click on another user that is currently administrator and edit this users info.Also, this new role can’t delete another role (the “Delete Role” button next to the “Save changes” button is simply not there). Also, this new role can’t view the capabilities of certain other roles, namely the administrator role and it’s own role. These simply don’t appear in the dropdown list in the “Select Role to View / Edit” box in the upper right corner.
Does this make it clearer, what is going on? It is strange, how I can copy a role, but still get a new role with less access rights.
Forum: Themes and Templates
In reply to: WP Explorers Adapt theme: Add a submenu buttonSolved. This is a method:
// Change menu button when logged in add_filter('wp_nav_menu_main-menu_items', 'menu_add_admin_buttons', 20, 2); function menu_add_admin_buttons( $items, $args ) { $btn_format = '<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="%s">%s</a>%s</li>'; $admin_btns_format = '<ul class="sub-menu">'; $admin_btns_format .= '<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://url3">Submenu button</a></li>'; $admin_btns_format .= '</ul>'; // If logged in if ( is_user_logged_in() ) { // If admin if(current_user_can('has_admin_rights')) // I have added this one my self. You can use fx 'edit_pages' instead $submenu_btns = $admin_btns_format; else $submenu_btns = ''; $btn = sprintf($btn_format, 'https://url1', __('Your profile'), __($submenu_btns) ); // If not logged in } else { $btn = sprintf($btn_format, 'https://url2', __('Log In'), '' ); } return $items . $btn; }
Forum: Plugins
In reply to: [User Groups] Shortcode or frontend possibilities?It seems not. There are no frontend options.
Forum: Themes and Templates
In reply to: WPExplorers Adapt theme: Change backgroundBy the way, just changing the bg.png file doesn’t work.
When I set the background in the Appearance > Customizing it seems that the image is shown fine on the website UNTIL I go to the WP admin panel again. Then only the background color is shown. That means, if I just close the browser window, then it still works fine. But when I open the WP admin panel again, it is gone.
Can I reset the background settings in some way, to make it work when I change the bg.png file through FTP, as you suggested?
Forum: Themes and Templates
In reply to: WPExplorers Adapt theme: Change background@marvel Labs
Thanks. Can this be done via the a child-theme?Forum: Plugins
In reply to: [WP-Members Membership Plugin] Change "TOS" to "Terms"Thanks a lot!
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Change "TOS" to "Terms"I have now edited the code directly in the
wp-members-dialogs.php
file at line 881.This will though be overwritten by a later update, so I’m interested in better solutions…
Forum: Plugins
In reply to: [User Groups] User group module for mailpressHi @mortydot
Let me understand this correctly: This module of yours, is it integrated in the User Groups plugin? And after installing this plugin, then I simply need to install MailPress plugin also?
If so, this is perfect! (If not so, how is it intended to be used?!)
I have been looking for a method to create internal classes for my members on my site. With this plugin, classes can just be groups and the e-mail-to-all-attendees-of-a-specific-group feature, which is absolutely essential, is possible here it seems! Perfect.
Please let me know, if I have understood it correctly.
Thanks in advance.
Thanks, @angelo_nwl, I will try your link. Can you tell me, how I write this price, calculated in the function, on a page? What short-code?
Thanks for reply @marcus, but I don’t follow your idea. In my case I use the EM plugin to let people join a 10 week class. A class costs say 500$. When joining more than one class (pr. season), the additional classes costs only 200$. So 1 class is 500$, 2 is 700$, 3 is 900$ etc.
Each user should be able to buy just ONE seat for a class, meaning just ONE ticket without the posibility to add more spaces.
I might have misunderstood you, but I don’t think this is a solution.Thanks, @philipjohn.
The placeholder #_ATTENDEESLIST gives a list of names attending the event, right?
So first question: How do I get all the e-mail addresses?
Second question: If I get the e-mails written, how can I send them all an e-mail at once? An e-mail whos text is written in a textfield or so? (I might need a plugin for this)
Thanks for your answer.
I don’t find any placeholder to COUNT all tickets in the link.
I don’t know what you mean by sample formats. My wish is simple:- If the user attends ONE class, then show the price 200 $.
- If the user attends TWO classes, then show 350 $.
- If the user attends THREE classes, then show 450$.
Of course this is to be shown on a specific payment-page that the user can access when logged in.
I can see in the bottom of your link some information about the if-commands. So far so good. But how do I count the tickets? How do I get the count variable to put into some if-command?