focuswebtech
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Failed to send your message.Are you on a Windows server? Seems like this plugin need php mail function to work and I don’t think it’s that way with a Windows server ??
Forum: Plugins
In reply to: Contact Form 7 – Windows ServerYes, me too – very frustrating. Seems like we may need to have host do something?? Anyone know?
Forum: Plugins
In reply to: Plugin Finder?Hehe ?? OK, point taken. Will do that – thanks for the advice!
Forum: Fixing WordPress
In reply to: How do you remove the footer in Atahualpa?I found the solution:
1) Open themes/atahualpa/functions.php
2) go to line 660
3) DO NOT REMOVE THE WHOLE LINE! Instead replace it with:
$footer_content .= '<br />';
4) Alternatively you can replace with your own html as shown
here
5) Save file
6) Magic ??Forum: Fixing WordPress
In reply to: Links/blogroll problem with Image AddressOK – I found a plugin that customizes the blogroll. Works now. Thanks for your help ??
Forum: Fixing WordPress
In reply to: Links/blogroll problem with Image AddressStill not working ??
The links show up, but not the actual text, only the image. Got any other suggestions?
Forum: Fixing WordPress
In reply to: Links/blogroll problem with Image Addresstry removing the period ?? It added the period on the a for some reason.
Forum: Fixing WordPress
In reply to: Links/blogroll problem with Image AddressI only added a couple of links hard coded in to widgets.php. Nothing spectacular ??
Widgets I have are:
Pages,
RSS,
Recent Posts,
Search,
Categories,
Tags,
LinksOne thing I noticed is that it’s saying Left sidebar, when you can clearly see it’s displying on the right!
Forum: Fixing WordPress
In reply to: Links/blogroll problem with Image AddressWell, I am using widgets, so edits in sidebar.php don’t seem to be taking as they normally would – I am not sure how it all fits together though. I have done some edits to wp-includes/widgets.php.
Relevant code in sidebar.php is:
<h4>Links</h4> <ul> <?php wp_list_bookmarks('title_li=0&categorize=0'); ?> </ul>
In widgets.php, I have:
* Display links widget. * * @since 2.2.0 * * @param array $args Widget arguments. */ function wp_widget_links($args) { extract($args, EXTR_SKIP); $before_widget = preg_replace('/id="[^"]*"/','id="%id"', $before_widget); wp_list_bookmarks(apply_filters('widget_links_args', array( 'title_before' => $before_title, 'title_after' => $after_title, 'category_before' => $before_widget, 'category_after' => $after_widget, 'show_images' => true, 'class' => 'linkcat widget' ))); }
I appreciate your help…
Forum: Fixing WordPress
In reply to: Links/blogroll problem with Image AddressYes – I can edit the css and theme – what do I need to edit?? I’m a novice at php but pretty proficient in css.