Donquiweb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual and HTML Editor are missingHi,
I fixed this issue on WP 3.3.1 when I deactivated the deflate_module on my Wamp installation. I activated it to test a PHP application few days before and remember this when I found the error :
Erreur : missing ) after argument list
Fichier Source : https://www.mysite.com/wp-admin/load-scripts.php?c=1&load=admin-bar,hoverIntent,common,jquery-color,thickbox,theme-preview,theme&ver=2bb4e45d240f389d99fab9f4c89db532
Ligne : 3, Colonne : 3942Hope it will help you.
Best,
D.Forum: Fixing WordPress
In reply to: Visual Editor Not WorkingHi,
I fixed this issue on WP 3.3.1 when I deactivated the deflate_module on my Wamp installation. I activated it to test a PHP application few days before and remember this when I found the error :
Erreur?: missing ) after argument list
Fichier Source?: https://www.mysite.com/wp-admin/load-scripts.php?c=1&load=admin-bar,hoverIntent,common,jquery-color,thickbox,theme-preview,theme&ver=2bb4e45d240f389d99fab9f4c89db532
Ligne?: 3, Colonne?: 3942Hope it will help you.
Best,
D.Forum: Alpha/Beta/RC
In reply to: Can’t access to Forums With latest WP 3.0 beta 2ok, as I’m going to try.
Maybe bbpress doesn’t work with WP 3 because the installation seems to be ok but the link is broken.thanks.
Forum: Alpha/Beta/RC
In reply to: Can’t access to Forums With latest WP 3.0 beta 2In fact with the WP 3.0.2 we have a bbpress release here in Buddypress :
\wp-content\plugins\buddypress\bp-forums\bbpressForum: Plugins
In reply to: [NextGEN Gallery] Imagebrowser with galleryHi, I’m trying to do the same thing : a big picture and the gallery thumbnails on the right.
It’s strange that there isn’t a default template to do that.Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Ability to sort images in a galleryHi Michael,
to show the “sort gallery” button you must change the setting in Galley > Options > Sort options > Sort thumbnails > Custom order.
??
ok, I found how to do it:
[recent max=”1″ template=”homepage” id=”4″ mode=”date” /]
recent max=”1″ -> show 1 picture
template=”homepage” -> I create a new template (see below)
id=”4″ -> ID of gallery
mode=”date” -> to show the latest by date in the gallery id=4template :
<?php /** Template Page for the gallery home page **/ ?> <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?> <img title="<?php echo $image->alttext ?>" alt="<?php echo $image->alttext ?>" src="<?php echo $current->url; ?>" /> <?php endif; ?>
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] How to add multiple images per productOk.
Well I will use with a custom query.
I just want to have the name of the pictures in a JS array to change the big picture with a click.Should be possible.
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] How to add multiple images per productHum tell me if it’s possible too without the gold cart.
I want to do the same system than on this product page https://www.typetees.com/product/494/So_far_this_is_the_oldest_I_have_ever_beena big picture and when I click, you can show another pictures.
Or several pictures, when I clikc the big picture changes.
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] How to add multiple images per productHi Static,
I’m testing & evaluating wp e-commerce and I would like to know if it’s possible (with the gold cart) to add the pictures of a product under the big picture and to open this pictures in place of the big picture.
Can I open these pictures in the page (i need to write the thumbnails in the pages under the big main pictures) instead of in a lightbox.
Thanks.
Ok Alexrabe, I change the code.
I need to clean this code a little.Thanks.
Ok, I think that I found a clean solution with the priority value.
<?php add_filter($tag, $function_to_add, $priority = 10, $accepted_args = 1); ?>
I added a higher priority on my add_filter(‘the_content’, ‘my_multi_col’, 12, 1); call at the end of the code of this “display content in multiple columns” function
Maybe this post will help somebody ??