Chris Cook
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trying to add white space around main image/widget?Looks like the theme is using site origin page builder so you should be able to add a border to the section with the homepage image in it from the page editor.
Forum: Themes and Templates
In reply to: [Dream Way] Featured ImagesPlease post a link to your live site so we can assist you.
Forum: Fixing WordPress
In reply to: Trying to add white space around main image/widget?Please provide us with a link to your live site so we can view what you have.
Forum: Themes and Templates
In reply to: [Lifestyle] Read more link not appearingTry this one.
// Changing excerpt length function my_wp_trim_excerpt($text) { // Fakes an excerpt if needed if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = strip_tags($text, '<p>'); $excerpt_length = 50; $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); array_push($words, ' ... <a href="'. get_permalink() . '">READ MORE</a>'); $text = implode(' ', $words); } } return $text; }
Forum: Themes and Templates
In reply to: [Pure & Simple] How to make header background transparentReplace (#fff) with this.
rbga (255, 255, 255, 0.2)
Forum: Themes and Templates
In reply to: [Lifestyle] Read more link not appearingYou can add this to your functions.php file located in your themes root folder.
// Replaces the excerpt "more" text by a link function new_excerpt_more($more) { global $post; return '...<a class="moretag" href="'. get_permalink($post->ID) . '"> Read the full article.</a>'; } add_filter('excerpt_more', 'new_excerpt_more');
Forum: Fixing WordPress
In reply to: Removing the "More Posts" below the author detailsEvery WordPress site will have the loop. The loop.php will be found in your themes folder.
wp-content / themes / your-theme / loop.php
Forum: Fixing WordPress
In reply to: Reset admin password 4.3.1Have you exhausted all of these methods?
Forum: Fixing WordPress
In reply to: Site icon not displaying properlyUse this plugin. Much easier. Otherwise provide a link to your site please.
https://www.ads-software.com/plugins/favicon-by-realfavicongenerator/
Forum: Fixing WordPress
In reply to: Removing the "More Posts" below the author detailsThat would be the pagination codex found in the loop.php and it should look something like below. You can just remove the code and it should go away. But make sure the max number of page is set to 1.
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div> <div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>
<?php global $wp_query; if ( $wp_query->max_num_pages > 1 ) : ?> <?php endif; ?>
Forum: Themes and Templates
In reply to: [Founder] Width page for static homepageThis will change the width to a larger size on desktop views.
@media (min-width: 75em) .main { padding: 0 13%; }
Forum: Fixing WordPress
In reply to: How to create Template Full width edge to edgeFor tables I would recommend using TablePress.
Forum: Themes and Templates
In reply to: [AccessPress Root] Text is too far to the left…No problem. Looks like most of your issues are padding and margin styling tweaks.
Forum: Fixing WordPress
In reply to: Hi! I have a Database Connection IssueInstall the migrate plugin on the old site and run the migration. Then upload the old site to the new server (yes overwriting the install). Then create the new data base with the same credentials as the old and import the migrated DB using phpmyadmin.
Forum: Fixing WordPress
In reply to: How to edit footerThe editor was most likely disabled in the backend. You don’t need it though.