gillouze
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Release only specific pages from Staging to prodActually, it is standalone, and we copy manually the live site – that is why I’m searching a solution to give the possibility to the webmaster to be able to push releases with only some updated pages to production.
Forum: Plugins
In reply to: [Media Manager Plus] Media Upload TabsIndeed, I’m also very interested about the possibility to use your plugin on featured image, widget, etc… and not only for posting an image in the text editor.
I have clients who have to manage a lot of pictures and they are not familiar to order all their pictures by tagging them with custom taxonomies. That is why your plugin is really great but actually I’m not proposing it because it is limitated only on the post editor ??
Do you think you will integrate this possibility soon?I’ve resolved it, indeed, it was something with the Ogone panel configuration.
I was checking more than the 4 admitted parameters
Select NCERROR, ORDERID, PAYID and STATUS to Selected tab under Dynamic e-Commerce Parameters and this should solve your problem.Hi Zumma,
I have actually the same issue
Did you solve your issue? I’m wondering if maybe I didn’t set correctly my ogone feedback parameters (Request method in POST and not GET)Forum: Networking WordPress
In reply to: Some subsite with a different URL?I’m just reading this: https://maisonbisson.com/blog/post/14052/wordpress-hacks-nested-paths-for-wpmu-blogs/
It looks interessting…
Forum: Networking WordPress
In reply to: Some subsite with a different URL?Yep I’m blocking on that actually
wordpress multisite allow me to change the Path, siteurl and home, but if I’m adding a virtual subfolder in the siteurl for one of the subsite it doesn’t work…Forum: Networking WordPress
In reply to: Some subsite with a different URL?That is what I’ve done but it doens’t work if I set an extra ‘/’ in the url. I’m continuing to test with an adapted .htaccess
Forum: Networking WordPress
In reply to: Some subsite with a different URL?I’m wondering if I shouldn’t adapt the htaccess with rewriteRule
Forum: Plugins
In reply to: [Plugin: TinyMCE Templates] Problem with WP Multisite and TinyMCE TemplatesOk, I found the trick,
just replace in all plugin php files
$wpdb->prefix
by
$wpdb->base_prefix
It will work like a charm:)Forum: Plugins
In reply to: [Plugin: TinyMCE Templates] Problem with WP Multisite and TinyMCE TemplatesHave a look at this explaination
https://www.ads-software.com/support/topic/multisite-table-prefix-wpdb-prefix-incorrectForum: Plugins
In reply to: [Plugin: TinyMCE Templates] Problem with WP Multisite and TinyMCE TemplatesIt looks like under multisite installation, the database for sublevel site is wrongly created.
This looks causing some trouble…
$table = $wpdb->prefix.’mce_template’;
See in the function below used in the tinymce_templates.phppublic function activation()
{
global $wpdb;
$table = ‘wp_silencemce_templatemce_template’;
if ($wpdb->get_var(“show tables like ‘$table'”) != $table) {
$sql = “CREATE TABLE “.$table.” (
ID
varchar(32) NOT NULL,
name
varchar(50) NOT NULL,
desc
varchar(100) NOT NULL,
html
text NOT NULL,
share
tinyint(1) unsigned NOT NULL,
author
bigint(20) unsigned NOT NULL,
modified
timestamp NOT NULL,
UNIQUE KEY ID (ID
))
ENGINE = MYISAM
CHARACTER SET utf8
COLLATE utf8_unicode_ci;
“;
require_once(ABSPATH . ‘wp-admin/includes/upgrade.php’);
dbDelta($sql);
}
}Forum: Plugins
In reply to: [Plugin: TinyMCE Templates] Problem with WP Multisite and TinyMCE TemplatesI have the same issue…
I suppose it is certainly something easy to fix but I cannot find the way to correct it…