dajense
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: the_excerpt function not showing images with captionsMaybe the shortcodes should disappear, I could live with that. But for me it stripped the image as well if I included a caption. Is this by design as well?
Forum: Fixing WordPress
In reply to: the_excerpt function not showing images with captionsOk fixed it. Captions are shortcodes which are automagically filtered by the_excerpt … so prevent this from happening, i.E. using the_advanced_excerpt plugin with appropriate options.
I can confirm this. I have the samy problem: Install of the wordpress importer fails with error-msg:
Destination folder already exists. /wp-content/plugins/wordpress-importer/
The solution is to download the plugin manually:
https://downloads.www.ads-software.com/plugin/wordpress-importer.zip
Then activate it as you would any other plugin.
The information you provided really is not sufficient to give you any advice. Edit your wp-config.php and add
define(‘WP_DEBUG’, true);
to have get debugging information and post that here.
Forum: Hacks
In reply to: Any filters to modify post editor html markup?Thanks for your answer but you missunderstand me. I am talking about the backend editor. I want to modify html markup in the admin/post editor by way of hooking into some wordpress function.
Forum: Fixing WordPress
In reply to: action hook save_post not working for custom post typeOk browsing the source code I answered my question. For those interested:
`add_action(‘publish_my_custom_post_type’, ‘save_product_data’);’
achtually refers to this function in the source code:
{$new_status}_{$post->post_type} which supports the status transitions defined here https://codex.www.ads-software.com/Post_Status_Transitions
and ‘save’ is not a transition.Forum: Fixing WordPress
In reply to: Theme doesn't show up but wp tells me it is thereMaybe you installed wordpress with network option? If so you need to go to network admin and enable the theme for normal blogs.
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Still can't save optionsOk so in case anybody else has problems with the plugin and a custom compiled php version on ubuntu.
You need to install the curl stuff:
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
Then you need to complile php with the configuration option:
--with-curl=/usr/lib \
Restart your apache and flattr should now save options.
Oh and thanks Michael for the pointer
Sorry for not getting back to you. Another project came up and I didn’t have time to fix this. Just wanted to let you know, that the problem was due to some views created way back before I started working on this project. But you put me on the right track. Thanks for your help.
Have you given the user database privileges to create views (GRANT CREATE VIEW ON yourWpDb.* TO ‘proxye6_gholton’@’localhost’;)?
Forum: Plugins
In reply to: Share This on WordPress Network InstallOk, just made some progress. I can activate the plugin in each blog manually. But I would like to use ‘Network activate’ to activate it for all blogs. So, does anybody know how to do this?