robvdn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New theme not populating to pages– Can you tell us what theme you are using now?
– Maybe you changed something in the footer and removed some code put there by the developer? Some coders protect their name / business to be mentioned in the footer, removing that code might give you a mess
– Is this image something you uploaded or not?
– if nothing else works: download the original theme again and overwrite this with the theme in your theme folder through FTP.
Forum: Fixing WordPress
In reply to: schedule category moveThanks Matt, but that is not what I’m looking for. Not looking for moving posts into another category but actually moving a category in parent category A to parent category B at a certain time.
Forum: Fixing WordPress
In reply to: How to add social media icons in headerDo you have a
<br>
or<p>
between your icons? If so remove them. Otherwise try to make the width wider, say 600.Forum: Fixing WordPress
In reply to: How to add social media icons in headerHow you call the CSS style is not important as long as you use the same, unique name in both CSS and header.
You can add a z-index to your CSS which stacks this code, a bit like paper pages. With a worth of 1 it will be at the bottom and with a worth of 100 there will be 99 pages beneath it. It depends on what z-index your header has, just experiment here.
div.social-icons { position:fixed; top:15px; left:15px; width: 300px; z-index: 10; }
Do you have a
or <p> between your icons? Otherwise try to make the width wider, say 600.Forum: Fixing WordPress
In reply to: Search and replace plugin – only deletes the old urlwp-config.php that is
Forum: Fixing WordPress
In reply to: Search and replace plugin – only deletes the old urlCheck your config.php if all is correct there
Forum: Fixing WordPress
In reply to: How to add social media icons in headerPut this in your style.php
div.social-icons { position:fixed; top:15px; left:15px; width: 300px; }
and this in your header.php
<div class="social-icons"> - your content here - </div>
you can post both at the bottom of each pages and you can play around with the values of the top, left and width until it suits you.
Forum: Fixing WordPress
In reply to: Text "Like this:Like Loading…" appears at the end of postsYou’re welcome ??
Forum: Fixing WordPress
In reply to: Text "Like this:Like Loading…" appears at the end of postsDon’t think this is a slider problem, to me it looks more like you have a plugin (Jetpack maybe) which shows likes (thumbs up) for posts.
The text on the slider is taken from your description / post so I’d look for the problem there.
Forum: Fixing WordPress
In reply to: Received a weird message to my admin email about new user1. WP always sends a mail when someone new registers.
2.
I am confused. Why would someone register as a new user on my business website?
Spammers, when they’ve found you they’ll keep coming.
3. Disable new members (see above) you can always add new members manually under users.
Forum: Fixing WordPress
In reply to: Search for category in Create Post pageForum: Fixing WordPress
In reply to: Cannot Login to Admin to resolve hack issueRenaming (not deleting!) your theme through FTP might help; make sure you have WordPress Twenty Fourteen theme installed! Otherwise upload it through FTP.
Something is going though… my McAfee went wild when opening your site.
Forum: Fixing WordPress
In reply to: How to create wordpress slider?google “3d carousel slider” and you’ll find numerous…
Forum: Fixing WordPress
In reply to: More post from same categoryHere’s a code I use in the single.php to show the thumbnails of other posts in the same category.
Might help you started ??$category = get_the_category(); //get first current category ID $this_post = $post->ID; // get ID of current post $posts = get_posts('numberposts=500&orderby=rand&category=' . $category[0]->cat_ID . '&exclude=' . $this_post); ?> <?php foreach($posts as $post) { ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> <?php the_post_thumbnail( array(150, 150) ); ?> </a> <?php } wp_reset_postdata(); ?> </div>
Forum: Fixing WordPress
In reply to: Hide the original author in commentsThanks! It gives me something to start working with ??