gilles846
Forum Replies Created
-
Forum: Plugins
In reply to: [Asgaros Forum] TranslationHi, I just added this to my functions.php file :
function extra_load_plugin_textdomain() { load_plugin_textdomain( 'asgaros-forum', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); } add_action( 'plugins_loaded', 'extra_load_plugin_textdomain' );
I even dowloaded your plugin twice to make sure there was no errors. If I remove those lines, everything returns to english only.
- This reply was modified 4 years, 8 months ago by gilles846.
Hi, sorry for late response, I reactivated the plugin and now all works fine. I don’t really know what happened. I guess this one can be closed. ??
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Working with multiple languagesHi, Yes both languages file are there. For an unknonw reason, when I switch language, the cart widget doesn’t change.
Forum: Plugins
In reply to: [Prisna GWT - Google Website Translator] Error 403Hi,
Yes, I tried the proposed fix but got the same result. Just saving the change would give me a 403 error.
In order to be able to modify the settings, I had to change it directly in the config file through CPanel.
Even then, just clicking on save without making any changes would still give me a 403 error.
The lockout happens when I try to often to fast. Then I have to get in touch with my hosting provider to remove the lock on my IP.
Hi,
Not sure if this will help you, but this is what I use for something that looks like you are looking for. I create templates with the following code:
$args = array(
‘order’ => ‘ASC’
);// The Query
$user_query = new WP_User_Query( $args );// User Loop
if ( ! empty( $user_query->get_results() ) ) {
foreach ( $user_query->get_results() as $user ) {
if ( $user->pm_field_20 == “xxxxxx”) {
echo ‘<p>’ . $user->display_name . ‘</p>’;
}
}
} else {
echo ‘No users found.’;
}If you want to know fast which pm_field_xx you want, you can use this:
$all_meta_for_user = get_user_meta( 2 );
print_r( $all_meta_for_user );Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Error 500Hi, the deleting folders did not make any changes. As for the database, after finding more than 300 hits containing dbem_ and deleting them, everything finally returned to normal. Thanks.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Error 500Hi, thanks for the reply. I know about that reset button as I did a parallel install and saw it. The problem is that I cannot get to it. As soon as I activate the plugin, I get ‘error 500’, cannot access the dashboard.
Hi, upgraded to 1.3.0, all back to normal. Thanks.
Forum: Plugins
In reply to: [Multisite Post Duplicator] Duplicated post not set to draftHi, thank you for the fast response. Worked perfectly. Just out of curiosity, I can understand that having a post date means the the text has been published, but is there a way to transfer de time stamp without the status?
Thanks again.
Forum: Themes and Templates
In reply to: [Hueman] Customizer not loadingHi, take a look at this post : https://www.ads-software.com/support/topic/after-3-3-0-upgrade-customize-freezing/
Forum: Themes and Templates
In reply to: [Hueman] Issue after adding (out) link.That’s what I am experiencing. I’m running my WordPress as multisite and when I install a new site the link manager is not there.
This page might give a more precise explanation : https://codex.www.ads-software.com/Links_Manager
Hope this help.
Forum: Themes and Templates
In reply to: [Hueman] Issue after adding (out) link.Hi, I had the same (almost) issue. The link manager you are talking about is old and is not in use in the new versions of WordPress. If you were using it before it was removed it is still working for you. It is known to prevent Customizr to work properly as discussed in previous posts. I replace that link manager by Simple Links and imported my old links in it. Removed the old widget from my sidebar, and, voila, Customizr back in working order.
Hope this help you.
Forum: Themes and Templates
In reply to: [Hueman] After 3.3.0 upgrade: Customize = FreezingHi Nicolas,
I installed the two new fixes, and all is now working fine. Also, I had to remove the old links widget from my sidebar.
Thanks.
Forum: Themes and Templates
In reply to: [Hueman] After 3.3.0 upgrade: Customize = FreezingHI, I applied the latest 2 fixes, but it didn’t fix the problem. When I try to access customizr, I’m only getting the loading circles.
Thanks.