manuelmasia
Forum Replies Created
-
Forum: Plugins
In reply to: [PixGridder] Page excerpts as grid contentEhm… honestly I didn’t understand. You can use PixGridder on pages only (the free version doesn’t allow to use it for posts, custom posts etc…). If with “Home page” you mean the Latest posts page, I’m sorry, but the latest posts page displays the posts only, nothing else.
I don’t know the theme you are using, I’m sorry. I think that this question should be made to the theme developer… if I’ve understood what you mean correctly. Otherwise, excuse me.
Manuel ??
Forum: Plugins
In reply to: Plugin approvalMy bad… I had a wrong email address on my account. Poor stupid guy ??
Forum: Plugins
In reply to: Plugin approval*”I read” not “a read”… forgive me for the typos and the poor english please
Forum: Alpha/Beta/RC
In reply to: Offset in single post back endOk, it seems that the issue is due to the fact that the body of the single back end has got “position:relative”… is it normal? Is it possible to know why the body has position set to relative in this case only?
Forum: Plugins
In reply to: [WordPress Importer] WP Network issuesFixed by hacking the plugin… the problem is due to the filter on wp_insert_post.
I changed:
$comment_post_ID = $post_id = wp_insert_post( $postdata, true );
into
remove_filter('content_save_pre', 'wp_filter_post_kses');
remove_filter('content_filtered_save_pre', 'wp_filter_post_kses');
$comment_post_ID = $post_id = wp_insert_post( $postdata, true );
add_filter('content_save_pre', 'wp_filter_post_kses');
add_filter('content_filtered_save_pre', 'wp_filter_post_kses');
Forum: Fixing WordPress
In reply to: Old galleries and new galleriesDidn’t see the dropdown to select the attached images… my bad, sorry
Finally I fix this issue. Sorry for the late reply.
Manuel ??
Hi, yes, you can, the plugin is free… but as you can see I don’t have much time to give support.
Just for curiosity: can I see you themes? Do you sell on ThemeForest?
Manuel ??
Forum: Plugins
In reply to: [Camera slideshow] [Plugin: Camera slideshow] So much potentialHi Anja.
Thank you for the suggestion. At the moment I’m too busy to make this hard implementation, but in the future who knows?
Manuel ??
Hi Lindsay,
are you sure you clicked the button called “File URL” before insert the image? Please, read the documentation available on the plugin admin itself:
Forum: Plugins
In reply to: [Camera slideshow] [Plugin: Camera slideshow] Slideshow in index.php?Hi NinjaTuna…
please, have a look to this thread https://groups.google.com/group/camera-for-wordpress/browse_thread/thread/dc32ea518bc250f0 (I use Google groups to give support)
Manuel ??
Forum: Plugins
In reply to: [Camera slideshow] [Plugin: Camera slideshow] js conflictSorry, I tried to enqueue the scripts by using the way recommended on WordPress Codex. What theme are you using?
Manuel ??
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce] 'Logout' link automatically added to menuHi Jeff,
I think there is a bug with the option panel. Maybe they will fix it soon. In the meanwhile just enter the settings page of WooCommerce, go to the tab “Pages” and enable the checkbox called ‘Append a logout link to menus containing “My Account”‘, save the settings. Then disable the checkbox and save again.
It worked for me.
Manuel ??
Ah… sorry, it depends on the fact that somewhere the script is enqueued, so you must use
wp_dequeue_script
.Some result… I already tried for you ??