superciccio14
Forum Replies Created
-
Forum: Plugins
In reply to: [Team - Team Members Showcase Plugin] Image size is not constant in gridOk, thank you! : )
Forum: Plugins
In reply to: [Team - Team Members Showcase Plugin] Image size is not constant in gridHello,
here is the screenshot:
edited
Thanks- This reply was modified 7 years, 10 months ago by superciccio14.
Forum: Plugins
In reply to: [Team - Team Members Showcase Plugin] Image size is not constant in gridOk, thank you!
I tried to load imgs with your demo size (i.e., 750×750). If I render the page with a resolution like 765×966, the imgs do resize differently from the name-title bars above each photo. Is there a way to avoid that?
Thanks for your support.
Forum: Plugins
In reply to: [Team - Team Members Showcase Plugin] Image size is not constant in gridOk, so isn’t there a good strategy to keep the size constant, except for starting from uniform sizes?
Forum: Plugins
In reply to: [Favicon by RealFaviconGenerator] Favicon does not load on child themeYou are welcome ??
Forum: Plugins
In reply to: [Favicon by RealFaviconGenerator] Favicon does not load on child themeHi phbernard, sorry for my late reply.
The div is in the head, as you mentioned. I didn’t find it because I was exploring the (post-processed) code by “Inspect Element”.
This plugin https://www.ads-software.com/plugins/facebook-lightbox-comments/ was injecting the faulty div. The plugin seems to be no longer supported, then I disabled it.
Now the favicon is visualized properly also in Chrome. : )
Thanks a lot for your support once again!
Forum: Plugins
In reply to: [Favicon by RealFaviconGenerator] Favicon does not load on child themeHI phbernard, thanks for your prompt reply.I have just analyzed my
<head>...<head>
but I didn’t find the faulty div you suggested. There is a
<div id="fb-root"></div>
in the body but not in the header…but I’m not an expert and I could be wrong…
Forum: Fixing WordPress
In reply to: Language of date format under post titleYesssss it works! Thank you so much!
Now a question: why I hadn’t be able to replace this strin through Codestyling Localization?
Forum: Fixing WordPress
In reply to: Language of date format under post titleYes, it’s right!
Yeah, Found it! In functions.php:
if ( ! function_exists( 'twentyeleven_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. * Create your own twentyeleven_posted_on to override in a child theme * * @since Twenty Eleven 1.0 */ function twentyeleven_posted_on() { printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ), esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ), get_the_author() ); } endif;
Ok, now should I edit then copy this function into the functions.php of my child theme to fix the problem?
Forum: Fixing WordPress
In reply to: Language of date format under post titleI opened
wp-content/themes/twentyeleven
and scanned:– single.php
– category.php
– archive.phpbut I didn’t find “Posted on”, so I wasn’t be able to replace the string… ??
Forum: Fixing WordPress
In reply to: Language of date format under post titleOk, I clicked on on “non case-sensitive” box in Codestyling Localizatio but I didn’t find the untranslated entry “posted on” and “by”.
Under the post in my WP home page there is a string beginning with “Contrassegnato con”. I tried to search for this entry (scanning translated strings), but ther is no match…It’s too strange…
There are no theme files, if I create a new file (it_IT), I don’t find entries such: “posted on” and “by”.
How can I do?
Forum: Fixing WordPress
In reply to: Language of date format under post titleThanks keesiemeijer, I deleted the POT file into my child theme.
Then I used Codestyling Localization:
I saw Italian language for wordpress, I rescanned the entries, looking for string like “Posted On” or “By” But I did not find them. I generated a new mo-file anyway but the problem persists…
Where am I getting wrong? ??
Forum: Fixing WordPress
In reply to: Language of date format under post titleThe translation file is
languages/twentyeleven.pot
and now I have the original file into the folder of my main theme. Then I dowloaded an italian version of WP and I copied itstwentyeleven.pot
into the folderlanguages
of my child theme. It doesn’t work.How can I do? Should I edit one of these 2 files?
Thanks
Forum: Fixing WordPress
In reply to: Language of date format under post titleOk but I downloaded WP 3.5.1 italian version and I copied this file into twentyeleven-child/languages.
How is it possible?
Forum: Fixing WordPress
In reply to: Language of date format under post titleSorry, I didn’t explain it well.
The date format is ok, my problem is the string under post title; i.e. it looks like:
Posted on 11 aprile 2013 by Science4Fun
that is a mix of italian date format and english words, instead of:
Postato in data 11 aprile 2013 da Science4Fun
The other sections of WP are properly in italian, as you can see here: https://science4fun.org/it/
This problem arised after the update to 3.5.1…