remediosgraphic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: post Image Sizewhen you upload a image to wp you generate 3+ a thumbnail a mid size a big size you can choose what to use, avoid write code and use the user view editor.
Forum: Fixing WordPress
In reply to: Customizing About Section On Idllytry https://www.ads-software.com/plugins/coblocks/ they have a Media Card Block or a Author Profile Block that do that for you
Forum: Fixing WordPress
In reply to: Thumbnail image issuecheck the iPress documentation for image size. or try to change the size on the main wp settings to test if is working
Forum: Fixing WordPress
In reply to: Many problems after transferring Websiteyou should provide domain or url to work on wp. if you change the domina but not change this parameter your site will be broke. I know you can change this on mySql or if you are not tech i recommend put back the old subdomain, change the settings and back to the main domain.
Forum: Localhost Installs
In reply to: PAGINA WORDPRESS ME REDIRECCIONA DIRECCION ANTIGUAhola para mas apoyo te recomiendo preguntar en https://es.www.ads-software.com/support/ que es la version en espa?ol de estos foros.
Forum: Plugins
In reply to: buddy press hooksfixed it was missing a “;” affter the las echo
Forum: Themes and Templates
In reply to: [Melos] menu highlight colorto hide the header on the site
#intro{display:none}
Forum: Themes and Templates
In reply to: [Melos] menu highlight color#intro #breadcrumbs a { color: #d3382b; }
this should work
Forum: Themes and Templates
In reply to: [Kyma] remove or change imagethe image background should be set on your functions file. maybe a css hack using selectors could be:
.page-template-contact_us_three .page_title {background-image:none!important}
Forum: Themes and Templates
In reply to: Confusion About Child Themesyou should place just new code on the new functions.php file on that way you always keep the other theme.
Forum: Themes and Templates
In reply to: WORDPRESS 4.4 Responsive imageswhy you don’t want the responsive images WordPress automatically creates several sizes of each image uploaded to the media library. By including the available sizes of an image into a srcset attribute, browsers can now choose to download the most appropriate size and ignore the others—potentially saving bandwidth and speeding up page load times in the process. there is not extra work ob the user side but a positive impact on your performance.
To modify the default srcset and sizes attributes, you should use the wp_calculate_image_srcset and wp_calculate_image_sizes filters, respectively.
Overriding the srcset or sizes attributes for images not embedded in post content (e.g. post thumbnails, galleries, etc.), can be accomplished using the wp_get_attachment_image_attributes filter, similar to how other image attributes are modified.
Additionally, you can create your own custom markup patterns by using wp_get_attachment_image_srcset() directly in your templates.
at the end also your theme should call the images with the responsive functionality like:
<?php $img_src = wp_get_attachment_image_url( $attachment_id, 'medium' ); $img_srcset = wp_get_attachment_image_srcset( $attachment_id, 'medium' ); ?>
if you don’t change any code like on functions or style.css you will be ok. the changes on the theme function usually are saved on your data base so any update don’t affect those changes.
Forum: Themes and Templates
In reply to: [Vito] Header Imageok as you can see the queality of the image is not the best
https://brianwolf.tv/wp-content/uploads/2015/11/IMG_0196.jpgalso there is a width=”3000″ and height=”3000″ forced on the html
Forum: Themes and Templates
In reply to: [Chosen] How do I edit the tagline?u are welcome
Forum: Themes and Templates
In reply to: [Customizr] Move menu in headerif you inspect the code there is no social icons over there, and is not working