monbouc
Forum Replies Created
-
Forum: Plugins
In reply to: [flowpaper] flipbook moving out of (and breaking page html flow)Good job, thank you.
Forum: Plugins
In reply to: [flowpaper] flipbook moving out of (and breaking page html flow)The website is under development, you’ll need to log in first with login “demo” and password “demo”.
Go to page https://fc.ablink.com/category/webmag/ (sidebar ok), there is a list of all posts concerned, just click one link. Here is an example : https://fc.ablink.com/le-webmag-de-france-cartoons-n13/ (sidebar not ok).
Thanks a lot.
- This reply was modified 5 years, 8 months ago by monbouc.
Thank you for your reply.
The 8.1.2 version of the Yoast plugin fixed the bug that I encountered with 8.1.1 version.
Everything is going on well.
🙂Forum: Fixing WordPress
In reply to: Admin widgets page inactiveHello all,
I’m still being stucked with my problem. The hard solution is to change of host (others tested with success), but for particular reasons, I’d like not to consider it.
If any new idea shows up, please let me know.Forum: Fixing WordPress
In reply to: Admin widgets page inactiveThank you esmi.
I’ll ask the hosting service about that.But when I run it on the server, the php function apache_get_modules() doesn’t return me this addon (don’t know if it should be the case though).
What remains weird is that when I deactivate javascript via my browser’s webdevelopper extension in order to test this admin widgets page, the functionnality still not works (it doesn’t either when the “accessibility mode” is activated via the page options tab).
The quest goes on…
Forum: Fixing WordPress
In reply to: Admin widgets page inactiveThank you.
I’ve just done it, but there’s no change, no message appears at any moment.Forum: Fixing WordPress
In reply to: Admin widgets page inactiveComplementary note : the problem shows up on the very basic WP installation (standard 2013 wp-theme, no plugins, no WP settings).
Oh I just found the “WP Category Post List Widget” plugin which does the trick :
WP Category Post List WidgetWow ! That’s a quick update ! Thank you !
To answer your question, no, I’m not creating a parent theme. I’m making a child of twentyeleven. But with a customized petition.css, yes.
The website doesn’t exist yet, but I’ll try to notificate you when it’s done.Some ideas for next releases : allow html in the petition text, and make an option for the position of the petition form, before or after the petition text. That’s all what your plugin missed to fulfill my needs.
Thanks again.
Forum: Plugins
In reply to: How I can hook function in class "Walker_Nav_Menu extends Walker"?Many thanks JPry !
I don’t know about viter-z-bayraku, but your comment made me save a good amount of time 🙂Forum: Plugins
In reply to: [Plugin: Co-Authors] Search don’t workbatmoo > your fix unfortunately didn’t change anything in my case, I’ve got no idea where it comes from ; but I had to move the site to another host and this seems to have made everything work perfectly (with the pre-fix version of your script and the same website structure), just like it does on the local version.
Many thanks anyway.Forum: Plugins
In reply to: [Plugin: Co-Authors] Search don’t workbatmoo > indeed it is !!! the fix is very welcome, many thanks !
Forum: Plugins
In reply to: [Plugin: Co-Authors] Search don’t workHello, it looks like I’ve got the same problem on a WP2.8.4/CA+1.2 configuration. The weird thing is that the search-as-you-type functionality works great on local server but is totally inactive on line. Both configuration look the same to me but certainly aren’t.
Any suggestion anyone, to steer me in the right direction ?
Thanks.Forum: Plugins
In reply to: [Plugin: User Community] Inline Image Galleryvanfell > this hack shall fulfill your needs (but you’ll have to watch carefully any plugin update, that may write over it)… Just replace the “_profilePicture” function that you’ll find in the alkivia/components/gallery/gallery.php file by the following :
function _profilePicture( $header, $user ) { $out = $this->getUserImage($user->ID, 'aligncenter'); $num = $this->countApprovedImages($user->{$this->option_name}); if ( 1 < $num ) { $images = ucom_get_user_gallery($user->ID); if ( empty($images) ) { return false; } $out .= "<div class='gallery'>\n"; foreach ( $images as $thumb ) { $out .= "<dl class='gallery-item'><dt class='gallery-icon'>\n"; $out .= '<a href="' . $thumb['link'] .'" title="' . $thumb['caption'] . '" rel="lightbox">' . $thumb['img'] . '</a>'; $out .= "</dt><dd class='gallery-caption'>{$thumb['caption']}<dd></dl>\n"; } $out .= '<br style="clear: both;" /></div>'; } $header .= apply_filters('ucom_profile_image', $out); return $header; }I hope it helps.