Loco77
Forum Replies Created
-
its still auto updating even though I turned off auto update for theme and plugin, this is driving me nuts
(Update- I think I know why it is Auto-Updating….I just looked in cPanel because I was curious…and as I suspected there appears to be a tickbox in Softaculous labelled “Auto Update WordPress Plugins”….. (will auto update every 24 hours)
That’s absolutely whats caused it, how silly of them….that feature is not needed in cPanel… anyway I’m happy its fixed for now I’m going to De-stress…..I might contact you again if I need to update – Thanks
- This reply was modified 2 years, 5 months ago by Loco77.
Thanks for replying fast, the design is great…I just need to stop it updating because its removing previous things I added to the homepage like the donate button and description and treating the homepage as a regular page and I can’t afford to sign up to pro.
I don’t think I said “Force”, I just said that Kubio shows an option to sign up to Pro…I don’t have time to spend redesigning or figuring out why its changing my homepage…Its not due to a theme edit.
At the moment my solution is going to be figuring out how to stop it auto updating and keeping the previous version of the plugin…thanks for the links hopefully I can find out how from those
Update: Do you think the plugin “Kubio” is somehow tied to the Theme and thats why it continues to update even though I blocked it in updates manager?
Elevate is mainly designed for small businesses, startups, or personal portfolio websites and works perfectly with Kubio Page Builderย
Perhaps if I block the theme from updating it will stop the plugin updating?
I don’t mind about the security risks from blocking auto updates, I just want it to stop ruining my site design when I have a lot of visitors looking.
Forum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'Hi FreakingID… It still seems to have identical excerpts on all pages from what I see ๐ any ideas on this one? I knew something is wrong
Forum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'Hi freakingid.. I copied and paste the new version in the Raw paste Data box at the bottom into the Loop.php in WordPress and when I check to see if mysite.co.uk/blog/2 has different excerpts to the main blog page it still shows the same 20 excerpts…
this is where I’m stuck, I searched all over to figure out why it does this for several months now
and when you type a search term in the search box it takes you to the sites homepage
Thanks for trying, although Im sure I’m never going to get this tidied up… I would be happy if I could just get around the duplicate excerpts on the blog/2 blog/3 pages etc
Forum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'I think it used Twenty Ten, although it was a previous Seo who made customization to it and they are not very helpful any longer
Here is the loop.php on pastebin
Forum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'* Without further ado, the loop: */ ?> <?php query_posts($query_string . '&cat=-4'); ?> <?php while ( have_posts() ) : the_post(); ?>I replaced the above with the code you mentioned in the above and I still only get the website header file… I don’t know too much about this but perhaps something is wrong in one of the other files?
Forum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'Hi FreakingID, when I try to replace the line in your last post with:
<?php if (have_posts()) : ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=somecat&paged=$paged"); ?> <?php while (have_posts()) : the_post(); ?>I refresh the blog home and it just displays the page header and nothing else :S
[ Please do not bump, that’s not permitted here. ]
Forum: Fixing WordPress
In reply to: Duplicate Blog Indexes 'Older Posts Pages'<?php /** * The loop that displays posts. * * The loop displays the posts and the post content. See * http://codex.wordpress.org/The_Loop to understand it and * http://codex.wordpress.org/Template_Tags to understand * the tags used in it. * * This can be overridden in child themes with loop.php or * loop-template.php, where 'template' is the loop context * requested by a template. For example, loop-index.php would * be used if it exists and we ask for the loop with: * <code>get_template_part( 'loop' , 'index');</code> */ ?> <?php /* If there are no posts to display, such as an empty archive page */ ?> <?php if ( ! have_posts() ) : ?> <div id="post-0" class="post error404 not-found"> <h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </div><!-- #post-0 --> <?php endif; ?> <?php /* Start the Loop. * * In Twenty Ten we use the same loop in multiple contexts. * It is broken into three main parts: when we're displaying * posts that are in the gallery category, when we're displaying * posts in the asides category, and finally all other posts. * * Additionally, we sometimes check for whether we are on an * archive page, a search page, etc., allowing for small differences * in the loop on each template without actually duplicating * the rest of the loop that is shared. * * Without further ado, the loop: */ ?> <?php query_posts($query_string . '&cat=-4'); ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?> <?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php twentyten_posted_on(); ?> </div><!-- .entry-meta --> <div class="entry-content"> <?php if ( post_password_required() ) : ?> <?php the_content(); ?> <?php else : ?> <?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) : $total_images = count( $images ); $image = array_shift( $images ); $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); ?> <div class="gallery-thumb"> <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> </div><!-- .gallery-thumb --> <p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', number_format_i18n( $total_images ) ); ?></em></p> <?php endif; ?> <?php the_excerpt(); ?> <?php endif; ?> </div><!-- .entry-content --> <div class="entry-utility"> <?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?> <a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a> <span class="meta-sep">|</span> <?php elseif ( in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?> <a href="<?php echo get_term_link( _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a> <span class="meta-sep">|</span> <?php endif; ?> <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> </div><!-- .entry-utility --> </div><!-- #post-## --> <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?> <?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <div class="entry-utility"> <?php twentyten_posted_on(); ?> <span class="meta-sep">|</span> <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> </div><!-- .entry-utility --> </div><!-- #post-## --> <?php /* How to display all other posts. */ ?> <?php else : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php twentyten_posted_on(); ?> </div><!-- .entry-meta --> <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <div class="entry-utility"> <?php if ( count( get_the_category() ) ) : ?> <span class="cat-links"> <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> </span> <span class="meta-sep">|</span> <?php endif; ?> <?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?> <span class="tag-links"> <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> </span> <span class="meta-sep">|</span> <?php endif; ?> <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> </div><!-- .entry-utility --> </div><!-- #post-## --> <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?> <?php endwhile; // End the loop. Whew. ?>I don’t know why but the search box, categories and older entries don’t display the relevant posts..It seemed as though the original web design didn’t bother configuring it correctly..
I don’t know enough about it to fix it myself..I’m an SEO/Graphic DesignerForum: Fixing WordPress
In reply to: Google Author Links ErrorHas Anyone Got Any Advice on this? I don’t know why Google have to make it so difficult and why its not more universal to suit different themes
[ Please do not bump, it’s not permitted here. ]
Forum: Everything else WordPress
In reply to: Removing Forum PostsThanks Alchymyth, I’m so sorry, I didn’t realize at the time that they would appear as backlinks. Won’t happen again
Forum: Everything else WordPress
In reply to: Removing Forum PostsI think there are 9 links altogether that I’ve posted over 9 months, sorry about this:
[links moderated – after the problem got addressed]
Forum: Everything else WordPress
In reply to: Removing Forum Postsmembers of the moderation team might be persuaded to remove sensitive information that has been included in posts accidentally
The URL could be considered sensitive if its showing up in our Webmaster Tools as a backlink
Forum: Everything else WordPress
In reply to: Removing Forum PostsYou can keep the posts if you want, its just our site has the Unnatural link Notice and we are paranoid about any links we have pointing to us now, so we want the reference to our site URL removed thats the only part we want removed.
Forum: Fixing WordPress
In reply to: Can't Block Referrer in htaccessHi Jan, I’m back, everything was going fine and the blocks were working for all of the badlinks we didn’t want pointing to us.
You could visit the inner pages by typing them in the address bar and the 403 didn’t display.
Then my client noticed that clicking on the links in Google also resulted in the 403? Do you know why this might be happening?AddType text/x-component .htc
# BEGIN WordPress
<IfModule mod_rewrite.c>
# Options +FollowSymlinks
RewriteEngine On
</IfModule>
<IfModule mod_rewrite.c>
RewriteCond %{HTTP_REFERER}http://www.BADLINKS.com [NC]
RewriteRule .* – [F]
</IfModule>
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress