Harry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving date above title in BrunelleschiHi downlikedisco,
The thread you previously posted on referenced yet another previous thread the user Samara had started. It was about editing the
<?php brunelleschi_posted_on(); ?>function, and how it displayed.It is here:
http://wordpress.org/support/topic/remove-author-remove-comments?replies=22If you find the
<?php brunelleschi_posted_on(); ?>function in your theme files, generally you can just move it above where the title of your post is generated.Hope this makes sense. Read the previous thread carefully, and if you have any queries, let me know. I’ll try to help out.
Sorry about telling you to start a new thread, it’s the rule of thumb here so that threads don’t end up stretching to 20 pages. We treat every visitors problem as a new issue, and where possible we’ll link to threads which have a solution. But sometimes the requirements differ slightly per user.
Thanks.
Forum: Fixing WordPress
In reply to: Moving Date above TitleHi Esmi, you’re always on the ball *waves*
Great minds think alike… fools seldom differ 🙂
Forum: Fixing WordPress
In reply to: Moving Date above TitleHi downlikedisco, this thread has been marked as resolved, it’s probably best you start your own one. If you do, post the link to it here.
But very quickly, are you also using the Brunelleschi theme?
Forum: Fixing WordPress
In reply to: how do I find and replace wordpress content characters?You could add what you want to find and replace into an array, and it would probably be more efficient.
<?php function replace_content($content) { $search = array('&', 'é', '—', '‘', '’', '“', '”'); $replace = array('&', 'é', '—', '‘', '’', '“', '”'); $content = str_replace($search, $replace, $content); return $content; } ?>Link: http://php.net/manual/en/function.str-replace.php – Check out the array examples.
Hope this works, I haven’t actually run the above code 🙂
Forum: Fixing WordPress
In reply to: Theme developer's link at bottom of pageNo hassle, anytime. Please mark as resolved 🙂
Forum: Fixing WordPress
In reply to: Theme developer's link at bottom of pageIs there something I can put in style.css to take care of this?
Yes, and the above CSS will do this.
Forum: Fixing WordPress
In reply to: Theme developer's link at bottom of pageIt still involves CSS, so no, I didn’t misunderstand you. Using the developer tools, I tested the change and it works.
Forum: Fixing WordPress
In reply to: Add multiple twitter feeds to a page???Check out the twitter developers site, you can get sample code to copy and paste: https://dev.twitter.com/docs/twitter-for-websites
Forum: Fixing WordPress
In reply to: Theme developer's link at bottom of pageOn line 994 of style.css add
display:none;so the block becomes:.credit_link { display: none; font-size: 0.8em; height: 40px; margin: 0 10px; text-align: center; }Forum: Fixing WordPress
In reply to: How to remove web designer's logoHi, it is most likely in the theme. However, most designers/developers add these unless you specifically ask them not to. This is standard.
Try the footer.php file, it could start with the following:
<p class="fr"> ... </p>Although, it could be written within a function in the functions.php file.
Let me know if you find it!
Forum: Fixing WordPress
In reply to: please helpSometimes plugins may not work with the version of WordPress you have, or on the odd occasion a plugin may conflict with another installed plugin.
In which case you can just deactivate the offending plugin in the admin interface.
Yes, if you want to set up and run a website, you will need to learn some basic coding at the very least.
For something like Facebook and Twitter, they provide the code, which you can just copy and paste in, without having to do anything.
Forum: Fixing WordPress
In reply to: please helpHi,
You could try an SEO plugin which will create the keywords meta tags automatically for the pages you’re trying to create.
Unfortunately if you want to customise WordPress, sometimes it will require the odd bit of coding. More often that not there is a plugin available.
Hope this helps:
http://wordpress.org/extend/plugins/all-in-one-seo-pack/Thanks,
HarForum: Fixing WordPress
In reply to: I changed under reading to a static page but now my blog won't loadSo are you keeping your main site out of WordPress?
It depends how the theme is construct, generally sometimes to get what page you’re on takes a little bit of hacking around with php.
is_page() and is_home() are two functions I look at when I need to figure out what page I’m on.
Hope this at least points you in the right direction.
Forum: Fixing WordPress
In reply to: one profile two emailsgSaenz, didn’t want to presume you had access to setup a mailing list directly on a mail server, but that would be the ideal solution!
@dil, I don’t think the plugin has anything to do with gSaenz’s query.
Forum: Fixing WordPress
In reply to: I changed under reading to a static page but now my blog won't loadIf you don’t have a custom blog front page I would revert away from the Static Page setting.