ilmattiapascal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Put Older Posts link in the loop after some poststhanks alchymyth you were right; sometimes i choose the most complicated way and i don’t see that the solution is under my eyes. Thanks!
Forum: Fixing WordPress
In reply to: Blog resize makes big layout problemsi tried, re tried, re re tried around lot of times, finally i was able to play with 2012 media queries right, and solved at least a part of the problem.
Forum: Fixing WordPress
In reply to: cannot scroll horizontally with my tabletsolved. It was an issue with the .site width ??
Forum: Fixing WordPress
In reply to: cannot scroll horizontally with my tableti really don’t know, if i go in other websites it works well…i’m afraid there’s a css rule that i probably messed up..
Forum: Fixing WordPress
In reply to: Blog resize makes big layout problemsanyway, only now i realized that in 2012 theme there was a media query for narrower resolutions :-O
sadly with my very very short experience with coding, i used to play with chrome inspect tool and make changes without realizing that maybe some results weren’t about the main page, but were about the media queries..probably i messed everything up…now i m trying to work little by little, but without big success; for example the sidebar continues to fall down after 600px width…i m asking for a rule which can make the sidebar always at the side of the content..
Forum: Fixing WordPress
In reply to: Blog resize makes big layout problemsok i’m trying getting into that…but i have some doubts that i would like to ask you:
validator says that <span>/</span> —> “document type does not allow element “SPAN” here”
but i think it’s correct because i want to have a “/” dividing the footer of my content.
or also…to fix some errors i just deleted some </footer> stuff which it said “end tag for element “FOOTER” which is not open” even if there still is a <footer class……> open…
at the end now the page is not telling me that something is going wrong, but i was sure that when you open a class you ve also to close it somewhere…or not?
Forum: Fixing WordPress
In reply to: Blog resize makes big layout problemswoah! it’s full of errors my html code alchymyth!
ok, i want to fix them but……i don’t understand how to fix them. Or better, where exactly i ve to fix them.
While the CSS Validator tells me where is the error in the style.css file, so it’s easy to me to locate and fix it, the HTML errors i don’t know where to fix them.
i think i don’t have a html document to modify as for the style.css….can you tell me how can i make the next step ? for example, where do i have to change the various <span>and / stuff ?
thanks!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Custom Share button positionok thank you jeremy! i thought that other people would have asked the same question during these months, but probably no one but me was interested on changing the share buttons position in the way i would change them! ??
i ll wait for your solution! in this while i think i ll deactivate the sharing buttons because i can’t let them double like that ??
Forum: Fixing WordPress
In reply to: If there's no content i don't want read more buttonthanks, at the end i was able to do it with the more tag; i changed the excerpt with the content() and put the tag in every post ! ??
Forum: Fixing WordPress
In reply to: If there's no content i don't want read more buttonno sorry, i don’t know how to use that tag….are you able simply to tellme how to write the rules which can tells my code “if there’s no excerpts, don’t span read more button ?”
Forum: Fixing WordPress
In reply to: If there's no content i don't want read more buttonfrom the content.php in the 2012’s child!
Forum: Fixing WordPress
In reply to: If there's no content i don't want read more buttonhi, thanks for the answer!
sorry i forgoto to say the theme! it’s a twentytwelve child theme!
<div class="entry-summary"> <?php the_excerpt(); ?> <a href="<?php echo get_permalink(); ?>"> Read More...</a> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Migrate from localhost to remote problemi got it fixed…it was a problem with jetpack plugin!
Forum: Fixing WordPress
In reply to: Migrate from localhost to remote problemP.S. the wordpress theme is a twentytwelve child theme
ok, so i made it. But, i hope that i didn’t destroy something. Anyway it seems working good.
i just added
function jptweak_remove_share() { remove_filter( 'the_content', 'sharing_display',19 ); remove_filter( 'the_excerpt', 'sharing_display',19 ); } add_action( 'loop_end', 'jptweak_remove_share' );
at the bottom of the sharing-service.php file removing:
add_filter( 'the_content', 'sharing_display', 19 ); add_filter( 'the_excerpt', 'sharing_display', 19 );
it’s possible that in the future it will cause me problems?