luckdragon
Forum Replies Created
-
Forum: Hacks
In reply to: Edit and Delete Actions for my own linksI’m not sure I understand what you are asking, I mean, isn’t edit/delete supposed to be updating/removing them from the database?
Forum: Hacks
In reply to: Grouping home posts by post_formatyou could do a double query/double loop.. i.e.
query for the quotes, then query for the standardswhile looping through the standards, add a counter, when the counter = 3, display a quote, reset the counter to 0 and continue with the standards..
Forum: Fixing WordPress
In reply to: WordPress URl and Site URL mismatch – site frozeedit the functions.php file for your theme, and right after the <?
put these 2 lines:update_option('siteurl','http://example.com/blog'); update_option('home','http://example.com/blog');of course, update them with the proper url
Forum: Fixing WordPress
In reply to: Strip the_meta() htmlwp-includes/post-template.php
that’s where you’ll find “the_meta” function.. you’d have to “hack” the core file because I don’t believe there is a hook for it.
Forum: Fixing WordPress
In reply to: Pages with email in domain 404 errorcontact form 7 probably had code in it to allocate for the extra parameter you’re passing, now, there’s no allocation for it, and therefore WP is looking for a subpage under page-name called info@mydomain.com
Forum: Themes and Templates
In reply to: Add "columbs" custom templates.using your image as a reference, the 1Footer section that I said goes in the footer (footer.php of your theme) creates one of the boxes you specified in your image
the code that goes in the functions.php (of your theme) creates a widget area for the box you placed in the footer.
for each box, you need a matching set of code with matching names (replace the 1Footer with whatever name you want
Forum: Fixing WordPress
In reply to: Adding editable columns infooter widgetForum: Fixing WordPress
In reply to: My sidebar is not a SIDE bar on my post pagesyou probably just placed it in the wrong area of the template, compare it to page.php and see where they have it placed.
Forum: Fixing WordPress
In reply to: cannot see my blog post showing your website got owned hacked bylooks like you got it fixed..
Forum: Fixing WordPress
In reply to: issues with styling image captionalchymyth answered your question, the line that says
if (the_post_thumbnail_caption()) {should sayif (get_post_thumbnail_caption()) {Forum: Fixing WordPress
In reply to: issues with styling image captionwhat WPyogi means is that we need a link to the page that is causing the problem, not to the site itself.
Forum: Fixing WordPress
In reply to: issues with styling image captionwhen you “inspect element” in FF or Chrome, is that the correct css?
i.e. is it in a div that is class=”detail” and then another that is class=”wp-caption-text”?
Forum: Fixing WordPress
In reply to: New post won't use proper URLThis webpage has a redirect loop
The webpage at http://www.pstc.ca/trucking_today/not-at-fault-accident-csa-scores/ has resulted in too many redirects.it sounds like your permalinks aren’t set properly.. try resetting them and see if that helps resolve the problem.
have you contacted your host to see if they did something?
Forum: Fixing WordPress
In reply to: Permalink adding extra markupamazing how punctuation can cause so much damage, huh?