| bio | website | ghosttoa.st |
|---|---|---|
| location | United States | |
| age | 32 | |
| visits | member for | 1 year, 3 months |
| seen | 8 hours ago | |
| stats | profile views | 49 |
Father, Coder, Gamer
|
Jun 6 |
comment |
How to keep a CPT from being visible on the front end? can you prevent single.php from showing posts of that type? |
|
Jun 6 |
comment |
How to secure the release of WordPress plugins / avoid copying plugins? Absolutely, which is why @Rarst's answer is totally valid. Anything that can be built can be unbuilt. So one would have to ask if it's worth it, or if they just want to go Open Source and free themselves, earning karma (cough cough, résumé fodder) instead of money for their efforts. |
|
Jun 6 |
comment |
How to make a child theme independent of parent? clone twentyten, rename first line in styles.css, rename folder. cherish it as your own forever and ever. |
|
Jun 6 |
comment |
How Do I Remove Comment Date and/or Comment Date Link Are you talking about changing how it's displayed on your site? Or actually destroying that part of the comment's data? |
|
Jun 6 |
comment |
Woocommerce is showing a random number of products per page Can we see some code of how you are handling pagination? And maybe the query itself? |
|
Jun 6 |
comment |
Do plugin files have to follow a specific convention to be “picked up” by WordPress? codex.wordpress.org/File_Header#Plugin_File_Header_Example |
|
Jun 6 |
comment |
How to remove certain words from url slug Oh yes. I forget about explode() as I only ever find my self using it's evil twin, implode() |
|
Jun 6 |
comment |
How to remove certain words from url slug$keys_false is a string right now. Is that right? Should be array I think |
|
Jun 6 |
comment |
Get all children titles of a page as a link to them do you have child pages of the current page? |
|
Jun 5 |
comment |
Menu's breaking, now showing all page links on site Have you recently changed themes or moved the website somewhere? Sometimes menus fall out of place during moves like this. Make sure your saved menus are in their proper slots. |
|
Jun 5 |
comment |
Load post attached images on a single page site with fancybox Sure, try this: chat.stackexchange.com/rooms/9119/chat-with-wyem-and-ghosttoast |
|
Jun 5 |
comment |
Load post attached images on a single page site with fancybox You should read a bit more in the Codex. the_permalink is for links to posts. I thought you wanted to Fancybox an image? |
|
Jun 5 |
comment |
How/Where is editor.min.js Added to the wp-admin Post Page? Hmm. I see. Hard to find out where it is being called from. Have you tried deleting/renaming file and seeing if an error is thrown in its absence? Might give us a clue |
|
Jun 5 |
comment |
How/Where is editor.min.js Added to the wp-admin Post Page? It's generally a bad idea to edit core files. It should never be needed. But since it's a real file, what's to stop you from prettifying it in an IDE and then re-minifying it after you've made edits? |
|
Jun 5 |
comment |
Integrating post archive wtih another source and preserving date ordering How are you getting this other feed? What does your code look like so far? |
|
Jun 5 |
comment |
Load post attached images on a single page site with fancybox why would you link to the_permalink() if you are trying to open up an image? Find it's URL using wp_get_attachment_image_src or similar, and echoing out it's URL in the <a> tag. codex.wordpress.org/Function_Reference/… |
|
Jun 5 |
comment |
Can a plugin be run in a different language than WordPress? That may depend on the plugin. Can you tell us which plugin it is and possibly provide a link or some sample code of what you have tried so far? |
|
Jun 5 |
comment |
Creating relationships between multiple content types If the answer works for you could you mark it as accepted? |
|
Jun 4 |
comment |
Generate a user list per site to communicate upgrade plans not sure how mine will hold up in a multisite. Might need some modification to exist gracefully there. Never dealt with MU before. |
|
Jun 4 |
comment |
Creating relationships between multiple content types Hmm. Did you try swapping the from and to fields? |