xavierve
Forum Replies Created
-
Forum: Plugins
In reply to: [Classic Editor] Image width style embededHi. Thanks for reply.
The classic editor is for an particular author that feels comfortable witthout blocks as he just want to write long texts.
Your CSS fix it for small screens, thanks!
I thought it should be fixed with an !important (to overrule the embeded WIDTH style), but it doesn’t
Actually, TT4 theme just limit container to global (–wp–style–global–content-size 620px by default) not to parent 100%body .is-layout-constrained > :where(:not(.alignleft):not (.alignright):not(.alignfull)) { max-width: var(--wp--style--global--content-size); margin-left: auto !important; margin-right: auto !important; }
The problem is now on desktop, FIGURE and IMG are not limited to xxx but to .entry-content width. Can add your css fix for small screens and another with an @media , sure, but…
I think best solution is fixing the root of the problem: when inserting media with caption, a WIDTH on fixed pixels is passed and it shouldnt
[caption id="attachment_53" align="alignnone" width="1024"]
I tried going to HTML Editor to remove such width=”1024″ but it comes back every time I open the VISUAL Editor
regards
Forum: Plugins
In reply to: [Classic Editor] Image width style embededhere is a fix por this old issue, meanwhile they change the coder
1- edit functions.php of yout theme
2- add following line remove the fixed WIDTH pixels
add_filter(‘img_caption_shortcode_width’, ‘__return_false’);
Forum: Plugins
In reply to: [Classic Editor] Image width style embededif you don’t use captions, in place of FIGURE, it uses only IMG tag, and the WIDTH of FIGURE is not there anymore. Anyway I would like using captions for my photos. So, once again : How to fix this issue of FIGURE width being embeded with fixed pixels?
Forum: Plugins
In reply to: [Easy Image Gallery] Link to large images by defaultHi, thanks for reply
god to hear, so, waiting for new release!meanwhile, for those that can’t wait, an ugly code to make gallery link allways to big sizes images
EDIT FILE in INCLUDES/metabox.php ROW #159
*where it says
=== ini code ===
else {
$checked = null;
=== end code ===
*change for
=== ini code ===
else {
$checked = ‘checked=”checked”‘;
=== end code ===Forum: Themes and Templates
In reply to: [CarListings] car-page slideshow image size in thumbssorry newbie fault ! new uploaded images are right resized. sorry agaIN! ??
- This reply was modified 4 years, 4 months ago by xavierve.
Forum: Plugins
In reply to: [List category posts] list TIME (beside DATE)right perfect!
so, usint date, you can output just time, just date or both of them, depending de DATEFORMAT parameters used.THANKS FOR SUPPORT, fer sos groso!
Forum: Plugins
In reply to: [List category posts] [catlist currenttags] not workingok fernando, it’s working right perfect !
thanks for support
/gracias Fer, capo!Forum: Plugins
In reply to: [List category posts] After upgrade Posts not showing, only parameters.just go to PLUGINS and turn ACTIVATE plugin ??
Forum: Plugins
In reply to: [List category posts] After update the page shows only the parametersyeap, just re-activate the plugin ??
Forum: Plugins
In reply to: [Slideshow Gallery LITE] post_id as a variable?Hi Pulpcovers,
To authomatically get the slideshow of current page, if page is single page or post, just go to single.php (it depends of your theme) and ad the slideshow hardcode<?php
$pid = get_the_ID();
if (function_exists(‘slideshow’)) { slideshow(true, false, $pid, array()); } ?>tell me if you got it working ??
Forum: Plugins
In reply to: [Slideshow Gallery LITE] post_id as a variable?Hi there, thanks for this great plugin… a very brillant idea for making things usefull
it would be great if I could add the PHP code into single.php in order to show slideshow of current post -if it has images-
<?php // if (function_exists('slideshow')) { slideshow($output = true, $gallery_id = false, $post_id = false, $params = array()); } ?>
is it there a doc page for PHP ?
thanks in advance!
Forum: Reviews
In reply to: [Responsive Mobile] Nice theme but theme home page layout incorrectwould be nice any reply of support for this good comment… (ring ring .. cyberchimps team calling…)
Forum: Themes and Templates
In reply to: [Spacious] How can a change the fontso, would you share your experience?
??Forum: Plugins
In reply to: [WP Gallery Custom Links] Caption as no-follow link ?hi, thanks for your fast and sincere answer.
I understand that is not for everybody feature.Anyway I have an small and nice solution.
*** HACK TO SHORTCODE NOFOLLOW ***
1) EDIT wp-gallery-custom-links.php in plugin’s folder ADDING this on row #264if( isset( $attr['open_all_in_new_window_no_follow'] ) && strtolower( trim( $attr['open_all_in_new_window_no_follow'] ) ) === 'true' ) { $target = '_blank" rel="nofollow'; }
2) SHORTCODE ON WP PAGE/POST EDIT (TEXT VIEW)
example
[gallery ids="23,20,201,199" open_all_in_new_window_no_follow="true"]works like a charm
hope this help somebodyForum: Plugins
In reply to: [WP Gallery Custom Links] Caption as no-follow link ?a bad solution I found right now is hardcoding
wp-gallery-custom-links.php in plugin’s folder
at row #417 says
$output = preg_replace( $needle, 'href="' . $custom_link . '"', $output );
changed to
$output = preg_replace( $needle, 'href="' . $custom_link . '" rel="nofollow"', $output );
but would be great to allow to ADD OR NOT the
rel="nofollow"
through UI or shortcode.thanks again