goncen
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Wiki Tooltip] “Sorry, but the test of this URL failed!”Thanks, I’ve solved it. I only had to change the permissions in the “LocalSettings.php” file.
- This reply was modified 1 year, 7 months ago by goncen.
Forum: Plugins
In reply to: [Webcomic] How could you go about displaying a widget with the latest comic?already fix it.
It was to select a collectionthanks ??
Forum: Plugins
In reply to: [Webcomic] How could you go about displaying a widget with the latest comic?Hello sorry for the delay of the answer. I read the post about the solution and migrated all the content of the administrator to a new user and then rename it using the phpmyadmin and the problem was solved. Unfortunately some things got misconfigured, for example the “media library” is empty and should have done a backup before. Even so: thanks for the idea the problem is solved
I already update. Unfortunately the problem persists
forget one thing.
For the official wordpress desktop app to work, you must have jetpack installed. I don’t know if there is currently a clone conflict between jetpack and photonicForum: Developing with WordPress
In reply to: How to add css to my plugin?change the get_template_directory by plugins_url and another code and it is fixed:
// css /** * Register with hook 'wp_enqueue_scripts', which can be used for front end CSS and JavaScript */ add_action( 'wp_enqueue_scripts', 'prefix_add_my_stylesheet' ); /** * Enqueue plugin style-file */ function prefix_add_my_stylesheet() { // Respects SSL, Style.css is relative to the current file wp_register_style( 'prefix-style', plugins_url('gal.css', __FILE__) ); wp_enqueue_style( 'prefix-style' ); } // css
Tanks