Jeremy Pry
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Custom meta not imported into Multisite registrationDo you have any suggestions for how to get around the wp-activation.php file? Is there any way to insert code in there without hacking the core (which I refuse to do)?
Forum: Networking WordPress
In reply to: Custom meta not imported into Multisite registrationIt should be an array, based on what I can see in the wpmu_activate_signup() function.
It is stored in the DB as a serialized array, and then line 846 of ms-functions.php seems to indicate that $meta is an array.
I had a thought earlier: Is it possible that my code isn’t executing at all, due to
define( 'WP_INSTALLING', true );on line 2 of wp-activate.php? Am I correct that that prevents plugins from loading?Forum: Plugins
In reply to: [Event Calendar] [Plugin: Ajax Event Calendar] Time AdjustmentI’ve also filed an issue on Github so that others can help look into this: https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress/issues/108.
Forum: Plugins
In reply to: [Event Calendar] [Plugin: Ajax Event Calendar] Time AdjustmentIt looks like this is actually a conflict between the Ajax Event Calendar and this code being used in another plugin: https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress.
Deactivating the plugin that’s using the Custom Metabox code gets the time picker in the calendar working correctly again.
Forum: Themes and Templates
In reply to: Multiple Custom Post Types?@cruxwireweb: Please start your own new thread, instead of posting a new message to an old thread.
Forum: Themes and Templates
In reply to: How to remove text from footer@wahnsinn: Please create a new thread of your own. I’d also recommend asking on the StudioPress forums instead of the general WordPress forums.
Forum: Everything else WordPress
In reply to: WordPress.org search not returning any resultsOk, that’s cool. I didn’t want to be one more person to ignore the issue if it wasn’t already reported. Thanks for the info!
Forum: Themes and Templates
In reply to: Theme not showing paragraph breaksIn your case, it doesn’t look like there is any setting for
<p>elements other than in the very beginning for the reset. You can simply append the code I posted above to the end of your CSS file.Forum: Themes and Templates
In reply to: Theme not showing paragraph breaksAs a future reference, it is not necessary to add your CSS files to your post, as they are able to be viewed on your site (and they will be removed by a moderator anyway).
The problem is that your
<p>elements have 0 margin and 0 padding applied to them, which is why there is no separation between your paragraphs. How specific you want to be is up to you, but ultimately you need something like this:p { margin: 10px 0; }Adjust the actual pixel amount to your liking. You can also use
paddingin place ofmargin.Forum: Themes and Templates
In reply to: Twenty Ten Theme, full width element zoomSorry, one more thing. Near line 396 for
div.menu, addoverflow: auto;.Forum: Themes and Templates
In reply to: Twenty Ten Theme, full width element zoomI think I found what is causing the problem. Remove
float: left;from the definition for#accessin your style.css file, then resetmargin-rightandmargin-leftto auto. See if that gives you the results you’re looking for.Forum: Themes and Templates
In reply to: Twenty Ten Theme, full width element zoomWell, let’s take it back a few steps. First, I would recommend saving any changes you’ve made to the theme files, and then incorporate them into a Child Theme. This will make sure that you don’t lose anything if/when the TwentyTen theme is updated. Secondly, what specifically are you trying to accomplish by separating the header image and navigation from the original
<div>wraps that they were enclosed in? If I understand what you’re shooting for, maybe I can help you determine a better method that doesn’t break things unintentionally.Forum: Themes and Templates
In reply to: Twenty Ten Theme, full width element zoomOpen your style.css stylesheet. You will need to change
margin-rightandmargin-leftto auto in two places. The first is near line 1386 for the#toptitleelement, and the second is near line 378 for the#accesselement. The first change is for your transparent header image, and the second change is for your navigation menu.Forum: Themes and Templates
In reply to: Multiple Custom Post Types?Yes, you can certainly have more than one custom post type. You just can’t try adding more by the same name. Using your example code, where you create a post type of “books”, you can’t try creating a second post type by the name of “books”.
Also, there’s probably no need for the
flush_rewrite_rules()function just by creating a custom post type. According to the register_post_type | Flushing Rewrite on Activation page, this is needed for getting permalinks to work when a plugin is activated. Try removing that function call from your code.If you’re still having problems, it would be helpful to post the exact error messages you’re receiving, as well as more code examples. Just make sure to use the Pastebin for lengthy pieces of code, so that this thread does not become cluttered (never mind the fact that moderators will remove long code anyway).
Forum: Themes and Templates
In reply to: Bought a theme, dont know how to design the STATIC FRONT PAGEJust a side note for you, mrjoat– HTH is an acronym for Hope That Helps. It’s not actually part of David’s name 🙂
You may see it used frequently on these forums as well as other online forums.