JoseKost
Forum Replies Created
-
en effet, mais le lien http://site.url/wp-register.php fonctionne et redirige sur la page de connexion quoiqu’il en soit du réglage inecription dans wordpress!
Merci pour la réponse!
Tous les sites ou j’utilisais le plugin était configuré pour ne pas accepter les inscriptions – réglage (dans Réglages=>Général) * mais en effet je n’avais pas pris la peine de supprimer ce fichier de mon installation. Qui soit dit en passant reviendra à chaque mise à jour de WordPress.
Vu que le lien http://site.url/wp-register.php dévoile l’url secréte, ne serait-il pas possible d’ajouter un réglage dans le plugin qui vérifierait le réglage ‘inscription’ de WordPress et supprimerait ce fichier automatiquement ?
Bien à vous,
En effet, http://site.url/wp-register.php permet de dévoiler url de login. Que devient l’intérêt d’utiliser le plugin ?
Hello,
To resolve this error in the file ‘inc / core / widget.php it is necessary to replace the lines:
function __construct() { $widget_ops = array( 'classname' => 'shortcodes-ultimate', 'description' => __( 'Special Shortcodes Ultimate widget', 'su' ) ); $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'shortcodes-ultimate' ); $this->WP_Widget( 'shortcodes-ultimate', __( 'Shortcodes Ultimate', 'su' ), $widget_ops, $control_ops ); }by the following:
function __construct() { parent::__construct( 'shortcodes-ultimate', // Base ID 'Shortcodes Ultimate', // Widget Name array( 'classname' => 'shortcodes-ultimate', 'description' => __( 'Special Shortcodes Ultimate widget', 'su' ) ), array( 'width' => 300, 'height' => 350 ) ); }And everything works!
greetings
Jose
Forum: Plugins
In reply to: [wBounce] "The plugin does not have a valid header" and "Fatal error"Hi Kevin,
In http://codex.ww.wp.xz.cn/Writing_a_Plugin page under ‘Plugin Name’,it recommends to appoint the main plugin file with the name of plugin : ” For instance, if your Plugin will be called “Fabulous Functionality”, you might call your PHP file fabulous-functionality.php.”
And i noticed that if the main file is called with a different name, this causes the error : :”The plugin does not have a valid header”
Thank you for this great plugin what wbounce !
José
Forum: Plugins
In reply to: [wBounce] "The plugin does not have a valid header" and "Fatal error"hello Kevin,
During installation we get an error:”The plugin does not have a valid header”
But just rename the functions.php file (located in the archive) by
wbounce.php and the error disappear during installationRegards,
José
Forum: Plugins
In reply to: [wBounce] ShortcodesBravo for this plugin. I’ll put 5 stars!
For the shortcodes work, it would just change the line 28 of file class-frontend.php and add do_shortcode
like this:
echo stripslashes (do_shortcode (get_option (WBOUNCE_OPTION_KEY .'_ content ')));it works for me!
best regard
José