CAMEO172
Forum Replies Created
-
Hi,
The quicker for me to solve this problem is to change the alt and text directly in the database !
Everything is in “wp_ngg_pictures”
But please I would prefer an update iand stop going to database each time I add a gallery : I have 730 galleries and nearly 9000 pictures, I need this plugin up to date !
Forum: Plugins
In reply to: [SlimStat Analytics] Conflit between FooBox and SlimstatBeware that you have to add :”outbound_classes_rel_href_to_ignore” : “the class” for external files (or wptouch). This is not added in the small code to include ??
Forum: Plugins
In reply to: [AMP] Any support for NextGen Galleries?this is strange cause my Next Gen gallery work.. but I have an old version, before 2.0 !
example : https://www.concertsenboite.fr/2015/12/07/chronique-photos-live-melody-gardot/amp
Forum: Plugins
In reply to: [AMP] New error on Console : layout CONTAINER not supportedThanks for your great understanding.
I will follow this carefully but still remove smiley image for amp for the moment.Forum: Plugins
In reply to: [AMP] New error on Console : layout CONTAINER not supportedJust some of them. At lease ?? and ??
I just disable the smiley for amp as a solution !
Forum: Plugins
In reply to: [AMP] New error on Console : layout CONTAINER not supportedit seems the trouble is for some smileys.. don’t understand why.
Forum: Plugins
In reply to: [AMP] Template tweaksInterstice,
I really want to tweak the template but for now this is urgent to wait a final version. This is not hurry as AMP page works but yes, I think we need a particular functions.php ou some hook in order to prepare our own single and post template specially for AMP.
Forum: Plugins
In reply to: [AMP] Template tweaksThanks for your answer..this is strange cause I have for example some functions for W3total cache that are not active in AMP theme…
byt the way, can we imagine that the functionn will be in a particular file (in a /amp folder for example), on order to separate functions from the regular theme from functions for AMP theme ?
Forum: Plugins
In reply to: [AMP] Template tweaksplease, tell me more about the tweak !
I don’t want to make my own template but with the good method (and not loose it each time their is an update)Forum: Plugins
In reply to: [SlimStat Analytics] Conflit between FooBox and SlimstatHi Camu,
this is great and works perfectly.
I add the class of my links and all is working.Be carefull this is under Slimstat > Settings >Tra?age (in french). not in filter ??
Forum: Plugins
In reply to: [GD Star Rating] Editorials vote Multirating possible??I have a different solution :
With the help of the Plugin “More Field”, create a new field called, for example, “author rating” with Custom field key “authorrating” and type “number”
Add this field to article only.Once back in your article, with your new field write your rating according to your max number of stars (1, 2, 3 etc..).
In your theme template, add, for example, this code :
<?php $ratingauthor = get_post_meta($post->ID, authorrating, true); $ratingauthor2 = $ratingauthor*24; <strong>(change the 24 according to star size)</strong> ?> <div class="ratingheader" >Rating of <strong>your name</strong> :</div> <?php if ($ratingauthor <>'') { ?> <div id="article_rater_915" class="ratepost gdsr-oxygen_gif gdsr-size-24" itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating"> <meta itemprop="worstRating" content = "1"> <meta itemprop="ratingValue" content = "<?php echo $ratingauthor ; ?>"> <meta itemprop="bestRating" content = "6"> <div class="starsbar gdsr-size-24">(change starbar and 24 according to star size and type) <div class="gdouter gdheight"> <div id="gdr_vote_a915" style="width:<?php echo $ratingauthor2; ?>px;" class="gdinner gdheight"> </div> </div> </div> </div> <?php } else echo "No rating"; ?> </p>
Forum: Plugins
In reply to: [GD Star Rating] [Thumbs Mod] Shows The Thumbs Ratings With Different ColorsI have an easier solution : just do this template :
<div class"left">%CMM_THUMBS_TEXT%</div><span class=" right red thumblock %CMM_CSS_BLOCK%">%THUMB_DOWN% %VOTES_DOWN%</span><span class="green right thumblock %CMM_CSS_BLOCK%">%THUMB_UP% %VOTES_UP% </span>
and in CSS :
.red {color:red} .green {color:green}