RianneTemmen
Forum Replies Created
-
I had the issue in both backend and frontend.
But:
I deleted all files and I deleted the entire database. I put back a backup from two months ago and started updating from there. That worked. Luckily there was not much data lost, only one event had to be entered again and there were no tickets sold yet for that event.
So all’s well that ends well.
I just put the backup back, but the events still aren’t showing.
It was indeed a Themler thing. In Themler you cannot add code to the functions.php, but you have to add the code in the theme in Themler:
http://answers.themler.io/questions/148287/functions-php-added-code-not-working?page=1
It is working great now!
I tried with another theme and then it works fine. So there must be something in my theme causing a problem.
Maybe it is because I used Themler to build the theme or because I use Visual Composer
- This reply was modified 8 years, 7 months ago by RianneTemmen.
I didn’t make it work. They asked me to open a support ticket and I did, but I never heard anything after that.
This is in my plugin file:
<?php /** * Plugin Name: Mail bij update private pages * Plugin URI: http://www.dogmadesign.nl * Description: Er wordt een e-mail verzonden als de private page van een van uw gebruikers wordt bijgewerkt. * Version: 1.0 * Author: DogMa Design * Author URI: http://www.dogmadesign.nl * License: GPL2 */ /* Copyright YEAR PLUGIN_AUTHOR_NAME (email : PLUGIN AUTHOR EMAIL) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ // Start writing code after this line! //Send an email to the user when his private page was updated function cpc_send_email_on_page_update($post_id) { $author_id = get_post_field('post_author', $post_id); $user = get_userdata($author_id); $to = $user->user_email; $site_name = get_bloginfo('name'); $subject = '['.$site_name.'] Uw klantportaal is bijgewerkt !'; $message = 'Uw klantportaal is zojuist door DogMa Design bijgewerkt. U kunt inloggen om de wijzigingen te bekijken. Weet u de link niet meer? Mail ons gerust!'; wp_mail($to, $subject, $message); } add_action( 'save_post_klantportaal', 'cpc_send_email_on_page_update' );Click here for the screenshot.
Unfortunately it is not working. I made a plugin and activated it, but when I change and save a private page, no e-mail is sent.
Forum: Plugins
In reply to: [Sponsors] Grid style on mobileHere is the link:
Forum: Plugins
In reply to: [Sponsors] Grid style not working properlyHey Jan,
Thnx for responding. I am going to give it a try and let you know.
Fijne dag!
Kind regards,
Rianne
Forum: Plugins
In reply to: [Sponsors] Grid style not working properlythank you Jan, I will be waiting 🙂
I had the same problem. I installed on a test server and moved the site. I had Jetpack installed on the testserver, but not activated yet. After moving the site I activated Jetpack and got this problem. I went to the Permalink settings and after moving they had changed back to the standard settings. I saved the same settings as on my testserver and voila: Jetpack is working properly.
Just wanted to share in case this solves it for someone else as well.
Forum: Plugins
In reply to: [WPGlobus for WPBakery Visual Composer] Second language doesn't save entersHey Alex,
Thnx for your message. I updated everything that could be updated to the newest version. I still have every plugin deactivated except for WP Globus, Visual Composer and WP Globus for WP Bakery Visual Composer.
I still have the same problem.
Forum: Plugins
In reply to: [WPGlobus for WPBakery Visual Composer] Second language text won't changeI have the same problem here.
The layout of the second language page does not change when using your plugin, but when I disable your plugin it works just fine.
The only thing is that we have to code everything manually and that is a lot of work. I have the newest version of VC (4.8) and I am using your plugin version 1.0.4.
I don’t get it, because it worked fine in the earlier version I used.