bpartch
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Error message when adding in the from fieldI’ve read the above link, but am still confused. :/
Is the “Fom” field not to collect the users (senders) email and possibly name. How am I to know what to type for a name and email in the following format?
Name <[email protected]>
As I have no idea the name/email of the user(s) filling out my form(s). That’s why I have a form, to find out names/emails of people so I can contact them back. ??
Forum: Fixing WordPress
In reply to: BuddyPress Question? Is this allowed here?I just moved it all back to the root. Thanks for your help. ??
Forum: Fixing WordPress
In reply to: BuddyPress Question? Is this allowed here?Thanks for the quick response. Maybe I’ll just move it all back to the root. Though if anyone else has a solution for this I’m open to suggestions. ??
Forum: Fixing WordPress
In reply to: Can’t get my RSS feeds to workForum: Fixing WordPress
In reply to: add a theme song to homepage…Yes this can be done but we need to know more info as to how you plan to go about doing it before we can offer an advice on how to go about it.
The best bet would be to use a flash player of some sort, IMO.
Forum: Fixing WordPress
In reply to: Address bar RSS icon links to wrong URLIn header.php within the <head> </head> section look for this line:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feed/" />
Change it from that, to this:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="https://www.consumelessforayear.com/?feed=rss2" />
Hope it helps. ??
Forum: Themes and Templates
In reply to: How to change banner color?In the .css file ‘default.css’ look at line 64 and change the background properties value(background: #1e1b1a;) to a color you more prefer:
#header{ background: #1e1b1a; border-bottom: 5px solid #383332; padding: 0 0 15px 0;}
For the search box you will most likely need to open ‘header.php’ and look for this part:
<form action="https://cngame.tk/" id="searchform" method="get"> <input type="text" onfocus="this.value=''" size="45" id="s" name="s" value=""/> <input type="submit" value="Search" id="searchsubmit"/> </form>
and replace it with the code for your adsense search.
Hope it helps. ??
Forum: Themes and Templates
In reply to: red delicious theme has no login buttonYou can either go to it by manually typing the address in your browsers address bar (then bookmarking it):
https://yoursite.com/wp-admin/
Or you can add this in your theme where you want it to appear.
<?php wp_register('<li>', '</li>'); ?>
Forum: Themes and Templates
In reply to: thems problemIs there still a folder named “render’ in the themes directory? If so, delete it and try to re-upload it. ??
Forum: Themes and Templates
In reply to: How to change the color of the navigation arrows.Navigation arrows? Are these on your blog? Hard to say without seeing it. Can you post a link?
Forum: Fixing WordPress
In reply to: Change PasswordYou mean support here? Go to your profile and click the “edit” link to the right of your info at the top.
Forum: Fixing WordPress
In reply to: Flash files in headerCan you post a link?
Looks like it should be working. Are you sure the homepage is using index.php and not a home.php or page.php
Forum: Fixing WordPress
In reply to: How To Delete “Be The First To Comment” BoxYou can delete the call to the comments.php file in all the files where it exists, (single, page…) or you can open comments.php and remove it.
Can you post some code?