dawiyo
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Clean Up] Optimize not working in WP 3.9.xI appreciate the reply but that didn’t work for me. I wonder if it being Network Activated has anything to do with it.
Forum: Plugins
In reply to: [WP Clean Up] Optimize not working in WP 3.9.xI’m seeing the same error.
Forum: Plugins
In reply to: [Admin Columns] Get value of another column (to combine 2 columns)Thanks Jesper! I can’t believe I didn’t think of that! It’s working just fine now.
Forum: Plugins
In reply to: [Query Wrangler] Feedback and Discussion, bring your opinionsI second nolaandy’s suggestions, especially about AJAX integration.
Unless there’s already a way and I missed it, maybe a way to add classes to the output. For example, if I want to do a table layout, being about to add classes to that table would be nice.
Forum: Fixing WordPress
In reply to: Tiled Background ImageThere’s 2 simple steps to set up a tiling background.
First, the image must be able to be tiled graphically meaning if set side-by-side, it must be able to repeat. If you are confused, search for some tillable backgrounds and look at how they’re set up and you can see how the bottom edges are gonna line up with the top portion of tile below it. For example on the site you mentioned, here’s a link to the their image. Hopefully you can see the concept I’m trying to convey.
Second the file needs to be included with your WordPress theme usually in the image folder. In you CSS file you will need to modify the code for the body section to be
#body { background-image: url(images/HOWEVER-YOU-NAME-IT.png); }
You can also use the
background-repeat: repeat-x;
code to start changing the way the image tiles either on the x or y axis.Forum: Fixing WordPress
In reply to: Can I have 2 instances of wp_get_archives?After reviewing, I guess the problem I’m having is with the three pages of archive.php, archives.php, and sidebar.php working together. I need to duplicate those three pages and do something like how get_sidebar(‘example’) works, but to do it with wp_get_archives(). Working on it now.
Forum: Your WordPress
In reply to: Clothing Company with Shopping CartI’m viewing in Safari on OSX 10.6 and the title “Shopping Cart” in the right sidebar is overflowing into the background image. Also, the background image is no repeating correctly leaving four gray squares in each corners (unless that’s what you wanted).
btw I’m viewing this at 1920×1200.
Forum: Fixing WordPress
In reply to: Can I Run Two Archive Pages Separated by Category?Thanks but I don’t think that plugin is quite what I’m looking for.
I’ve got the problem down to one last step. Two pages, both “archive” pages separated by category, categorized by year in the sidebar. The problem is when I click on one of the years in sidebar, it makes the sidebar show years from posts not in the parent category. Hope that makes some kind of sense.