rebah
Forum Replies Created
-
I’m not sure what to do with it. I’ve downloaded it and replaced the original file, but nothing’s changed. I also can’t open it with Poedit. It says the file is corrupted or the wrong format. What do I do with the file?
Hi @caimin_nwl,
I have the same problem as the others. I see a few topics concerning the same problem, but no real solution. When I activate Events Manager I get an 500 error and the admin panel is unreachable.
I have tried it with all other plugins deactivated and with the standard theme, but no luck. Maybe this error log helps somehow:
[Thu Mar 02 13:51:04.860654 2017] [lsapi:error] [pid 743856] [client 92.111.26.61:64544] [host u14974p10815.web0108.zxcs.nl] Backend fatal error: PHP Fatal error: Uncaught Error: [] operator not supported for strings in /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-content/plugins/events-manager/classes/em-events.php:63\nStack trace:\n#0 /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-content/plugins/events-manager/classes/em-events.php(124): EM_Events::get(Array, true)\n#1 /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-content/plugins/events-manager/admin/em-admin.php(21): EM_Events::count(Array)\n#2 /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-includes/class-wp-hook.php(298): em_admin_menu('')\n#3 /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)\n#4 /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-includes/plugin.php(453): WP_Hook->do_action(Array)\n#5 /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-admin/includes/menu.php(149): do_action('admi in /home/u14974p10815/domains/u14974p10815.web0108.zxcs.nl/public_html/wp-content/plugins/events-manager/classes/em-events.php on line 63\n, referer: http://u14974p10815.web0108.zxcs.nl/wp-admin/plugin-install.php?s=events+manager&tab=search&type=termForum: Plugins
In reply to: [Simple User Listing] List users that check boxHey Helga,
Thank you for your quick reply. I don’t know too much about editing files, but if you say it’s possible then I will dive into it.
I will be a bit clearer in what I want the plugin to do. I’m using an events plugin, which I use to create events. Each event has a different page. I would like users that are already registered to my website be able to click on a “Register” button to register for the specific event. I then want them added to a list of users on the same page that have already registered for the event.
- This reply was modified 9 years, 2 months ago by rebah.
Forum: Themes and Templates
In reply to: Little help with CSS formHey,
Thanks a lot for your reply. I’m not sure if I don’t understand it correctly or perhaps I haven’t been explaining very well. Where would I put this code?
The form comes from a plugin called ‘doneren met mollie’. I have applied CSS to it through the custom CSS field of my theme. Below the CSS i used so far. I would also like to apply CSS to the labels, or are you saying there are no labels at all at the moment? So I have to put them somewhere in the plugin files themselves?
input.donate-form { max-width: 80%; margin-left: 10%; font-size: 20px; } style.donate-form { max-width: 80%; margin-left: 10%; } form.donate-form { max-width: 100%; border: 1px solid #dbdbdb; border-radius: 2px; background-color:#f4f7f8; } #dmm_interval { max-width:80%; margin-left: 10%; margin-top:10px; margin-bottom:-20px; } #dmm_method { max-width:40%; } select.donate-form /*betaalmethode*/ { margin-left: 10%; max-width:80%; } input.donate-button { margin-left: 10%; background-color: #009ee1; font-size: 20px; border-radius: 12px; margin-bottom: 20px; position:relative; bottom:20px; width: 80%; }- This reply was modified 9 years, 5 months ago by rebah.
Forum: Plugins
In reply to: [Doneren met Mollie] Paar vragenNaar die labels heb ik al gezocht, en veel geprobeerd, maar niet gevonden. Misschien zoek ik ook naar het verkeerde. Zou je één voorbeeld kunnen noemen van zo’n label?
Dit is wat ik tot nu toe heb:
.donate-form input { max-width: 80%; margin-left: 10%; font-size: 20px; } style { max-width: 80%; margin-left: 10%; } form { max-width: 100%; border: 1px solid #009ee1; border-radius: 2px; background-color:#f4f7f8; } #dmm_interval { max-width:80%; margin-left: 10%; margin-top:10px; margin-bottom:-20px; } #dmm_method { max-width:40%; } select.donate-form { margin-left: 10%; max-width:80%; } textarea { margin-left: 10%; max-width:80%; } input.donate-button { width: 100%; background-color: #009ee1; font-size: 20px; border-radius: 12px; margin-bottom: 20px; position:relative; bottom:20px; }Forum: Plugins
In reply to: [Automatic Featured Images from Videos] Use plugin on pagesHey Michael,
Thank for your reply. I’m pretty sure they are custom boxes. But if I understand you correctly, it is possible? If I use developer tools and click on the field where i need to place the embed code in the pages admin area it says textarea#tz_video_embed . Is there anything I can do with this info to make it work?
Forum: Fixing WordPress
In reply to: Add code to function.phpThat did the trick. Great. Thanks a lot!
Forum: Fixing WordPress
In reply to: Add code to function.phpAh ok tnx keesie I will use code from now on.
Jacob, I added the code now without the site crashing, so that’s progress. But the code doesn’t do what I want it to do. The ‘Featured’ category (ID 154) is still showing in the footer widget. Any clue on a next step?
This is the code is my child’s function.php now.
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001); function theme_enqueue_styles() { wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', '6.1c', 'all' ); wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), '6.1c', 'all' ); function set_category_widget_parameters($args) { $args[‘exclude’] = ‘154’; return $args; } add_filter(‘widget_categories_args’,’set_category_widget_parameters’); }Forum: Fixing WordPress
In reply to: Yoasts cloaking mobile problemIt turns out its a problem with the actual url itt links to. Tnx.
Forum: Fixing WordPress
In reply to: Can't login to control panelHello Kristen,
I renamed the plugin folder and it worked! I guessed it might be the plugin ‘better wp security’ and i renamed it. Then I gave the plugin folder the correct name back, and I could still login. So it must be that one even though it’s been running fine for a long time and I didn’t change anything.Anyway thanks a lot!
How do you suggest I removed it? From the dashboard or through FTP? Or something else entirely? 🙂
Forum: Plugins
In reply to: [GTS Translation Plugin] [Plugin: GTS Translation Plugin] Untrusted page?!Resolved? What was the solution?
Also getting the message “Unable to verify that you are an admin user.”Forum: Hacks
In reply to: Get […] after custom excerptSo after some experimenting i got it today. I used:
get_the_excerpt(), 0, strrpos( substr( get_the_excerpt(), 0, 75), ' ' )); ?> [...]Thanks for the help
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] strange squares on album & gallery pagesI’m at home now and I checked it out with Firebug.
See the code below, it seems to me that there is a bit much<code>
When i remove this in Firebug it helps, but I don’t know where to find the code. Is this the plugin or the theme?<div class="entry-content"> <p> <code> <code> <code> </code> </code> </code> </p> <div class="ngg-albumoverview"> <code> <code> <code> <div class="ngg-album-compact"> <div class="ngg-album-compact"> <div class="ngg-clear"></div> </code> </code> </code> </div> <code> <code> <code> </code> </code> </code> <code></code> <p></p> </div>I also have three levels and it isn’t working. I can only slect the first images I uploaded, but none of the new. Also typing the name doesn’t work.
Forum: Hacks
In reply to: Get […] after custom excerptI used the code in your example but the ellipsis aren’t showing…