weex
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] AJAX calls W3 Total Cachei think what i want to know is how can access the cache or cache object in really customized ways.
is this possible or a realistic question?
Forum: Fixing WordPress
In reply to: First, fatal memory error and now blank dashboardThese support forums have proved unhelpful to me time and time again. I wish this wasn’t my experience but it is. anyway I found the solution is to back up then do a manual update yourself.
Forum: Fixing WordPress
In reply to: fatal error allowed memory size issue, wordpress mostly broken nowMy site is hosted on my own VPS which I have full root access to (ssh, whm/cpanel). I can open a request ticket but if it’s related to wordpress they generally are not obligated since it is a “3rd party script”. I don’t believe this is a server or hosting issue at all. I think it’s likely a WordPress problem since WordPress broke in the middle of automatic update running. From the point of a non-logged in user visiting the site – everything functions normally.
The only other thing I can think of is trying go thru the manual update steps, thinking perhaps some of the core files got messed up during a botched automatic update.
Forum: Fixing WordPress
In reply to: Search Engines Don`t index my Category!as well as robots.txt. if these are not whats triggering a lack of indexing try manual submission i guess.
Forum: Fixing WordPress
In reply to: Search Engines Don`t index my Category!he means he wants to see your ACTUAL site so he can look at your code to see if you have meta no follow no index tags.
Forum: Plugins
In reply to: Plugin to edit large image gallery alt & captions on 1 pageBumping my question one more time with little hope of any response. 🙁
Forum: Plugins
In reply to: WordPress gallery that looks like this?that’s done with relatively very simple javascript / event handlers. so you’d just have to write a custom shortcode function that gets the images associated with a post and spit out the proper javascript with the image refs mixed in. you could probably get the javascritp code by googling. i dont know gallery / attachments very well. not that hard overall. i’m surprised there wouldn’t be some sort of plugin for this already.
Forum: Themes and Templates
In reply to: Creating New WP ThemeThis is how I do it:
1. I first create an html file on my computer and a css file. I link them together and create the basic, basic structure of the theme with the basic divs like title area, post area, sidebar just to test without having to worry about mixing it with php code.
2. I grab a new copy of a skeleton theme. I’ve used this one several times: http://starkerstheme.com/
3. Ditch the themes css file except for the comment info stuff, drop in your CSS file
4. go to the php files add in your divs, etc etc etc
You may have to comment out some code in the functions.php file of Starkers to get galleries to display properly.
I find it more convenient to develop offline with MAMP or if you have windows its called something else.
http://www.mamp.info/en/index.htmlotherwise yep, use the codex or google to get the specifics on using all the template tags and functions properly as you go along.
if you use mamp use console to keep a live watch on the php_error.log file as it spits out your errors automatically as it happens including line numbers!
i can also recommend the book ‘professional wordpress design and development’ as a good ebook. use it that a lot too.
Forum: Fixing WordPress
In reply to: comments have disappeared and are not workingsays “Comments are closed.” on the bottom of your permalinks so possibly your posts have comments disabled? go see if the checkbox for for allowing comments is checked on your posts in question. lemme know
Forum: Fixing WordPress
In reply to: SEO Titles?np!
Forum: Fixing WordPress
In reply to: SEO Titles?go into header.php of your theme and put in between the title tags <?php echo $post->post_title; ?>
Answer to your problem:
http://codex.wordpress.org/Shortcode_API#Output
“The return value of a shortcode handler function is inserted into the post content output in place of the shortcode macro. Remember to use return and not echo – anything that is echoed will be output to the browser, but it won’t appear in the correct place on the page.”
Forum: Fixing WordPress
In reply to: Shortcode jumps to topI experienced this situation myself. This is clearly explained directly on the Codex page for short code functions:
http://codex.wordpress.org/Shortcode_API#Output
“The return value of a shortcode handler function is inserted into the post content output in place of the shortcode macro. Remember to use return and not echo – anything that is echoed will be output to the browser, but it won’t appear in the correct place on the page.”
So instead of doing echo “stuff”; just return all that you want outputted as a string:
$string = “stuff”;
return $string;But I guess after 3 months of everyone failing to point out this simple fact you may have figured it out on your own already 😛
Forum: Fixing WordPress
In reply to: Using custom taxonomy "under the hood" only – Insight plz?Additionally,
– I have no website or URL to provide you with: I’m developing offline with MAMP.
– I know that I could do things more efficiently like a plugin that caches a list upon any updating of a post versus repetitive loops etc but I think that’s beyond my core question.
Thanks for reading and let me know if you need anymore clarification!