Joms
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove top widget area from pagesYou can try this: http://wordpress.org/extend/plugins/widget-context/
Forum: Everything else WordPress
In reply to: public wordpress to local wamp/dreamweaverThe easiest/fastest way would be as follows:
- Install WordPress on your local machine (*take note of the database used)
- Download wp-content folder from you live WordPress site
- Replace the wp-content of your recently installed WordPress site with the one you just downloaded from the live site.
- Download the database (sql file) of the live site.
- Using a text editor search for the value of your live site and replace it with your local site (http://localhost/sitename)
- Import the sql file on the database used to install your local WordPress
Forum: Themes and Templates
In reply to: Header/Footer IssueIt would help if you could provide a link on where I can see the problem. It could be that the image itself has a thin white border or the style for the div has a border applied to it, among other reasons.
Forum: Themes and Templates
In reply to: Deleting Sidebar from templateI’m not sure why that would happen, but to avoid editing the theme files you can just assign the only widgets that you would want to appear in the admin. Appearance->Widgets, drag a widget on the Blog Sidebar.
Hope that helps.
Forum: Themes and Templates
In reply to: Custom Widgets have bottom frame issue.The problem is with the custom widgets the ul tags inside them as a class of “menu” which in turn inherits all of its styles.
Forum: Themes and Templates
In reply to: How to Make Transparent Div for post content?Divs automatically expands vertically by default as long as the height is not set.
Forum: Fixing WordPress
In reply to: Some posts excerpted, others notSome of you posts might have a More tag in the content.
Forum: Themes and Templates
In reply to: Deleting Sidebar from templateJust leave the code below and delete everything else.
<div class="widget"> <h3><?php _e( 'Search' ) ?></h3> <?php get_search_form() ?> </div> <div class="widget"> <h3><?php _e( 'Archives' ) ?></h3> <?php wp_get_archives('type=monthly&show_post_count=1'); ?> </div>If the widgets still show then most likely your theme is setup to get the widgets on the WordPress admin. So you will have to manually remove them from the Widgets page.
Forum: Themes and Templates
In reply to: Header/Footer IssueThere are different ways on how to achieve this. This is what I would suggest:
Remove/change the width of your wrapper so it expands to 100% width of the screen.
Your HTML should look something like this:
<div id=”header”><div class=”wrap”>HEADER</div></div>
<div id=”content”><div class=”wrap”>CONTENT</div></div>
<div id=”footer”><div class=”wrap”>FOOTER</div></div>CSS:
.wrap {width:960px;margin:0 auto;}
#header {background:url(images/header.jpg) repeat-x;}
#footer {background:url(images/footer.jpg) repeat-x;}As for the sticky footer you could try this: http://css-tricks.com/snippets/css/sticky-footer/
Forum: Everything else WordPress
In reply to: HTML site to WordPressAssuming you know basic WordPress stuff (post/pages creation, comments, etc.)
You will need to convert the design into a WordPress theme. http://codex.wordpress.org/Theme_Development
Hi,
I think this is caused by the serialized data in the table of cf7. When you search and replace text the URL’s length is changed which results in a mismatch of the length of the string.
An alternative way when moving a WP site:
http://spectacu.la/search-and-replace-for-wordpress-databases/Regards
Forum: Plugins
In reply to: [Event Registration] [Plugin: Event Registration] Sidebar links not workingHi, upon testing the plugin I figured out how to make the links work. You’ll have to assign a page with a {EVENTREGIS} shortcode and use that page to display the single event.
For example if your events page is located on http://www.example.com/events/
Then the URL http://www.example.com/events/?regevent_action=register&event_id=7&name_of_event=Happy%20In%20Your%20Ever%20After will display the event.
This is the only page which the querystring works I think, although maybe there is a different approach to this but for now it will do on my website.
I did not manage to make the code above work so I just added this on the header.php file for my template:
<?php if (is_front_page()) :?> $('#nav > li:first').addClass('current_page_item'); <?php endif; ?>