Jonathan Wold
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Multiple lost password pagesAny rough guidance on how to do this “uneasily”?
Forum: Plugins
In reply to: [Theme My Login] Welcome email not sending when using custom redirectI’ve temporarily worked around the issue by updating line 344 in /includes/class-theme-my-login.php, replacing:
$redirect_to = ! empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : site_url( 'wp-login.php?checkemail=registered' );
with:
$redirect_to = '/my/url';
Forum: Plugins
In reply to: [WooCommerce] Mass printing orders to A4 sheet label stickers?I have a client with nearly the exact same need. No solution yet, but still looking.
Forum: Plugins
In reply to: [The Events Calendar] Interferes with ACF Relationship FieldI’ve just tested this on Events Calendar Pro 3.0.3 and the issue remains.
Forum: Plugins
In reply to: [The Events Calendar] Interferes with ACF Relationship FieldI’m also experiencing the exact same issue. Hoping they resolve it soon.
Forum: Plugins
In reply to: [AJAX Hits Counter + Popular Posts Widget] Using custom post excerptI temporarily changed line 761 from:
$temp_excerpt = get_the_content();
To:
$temp_excerpt = get_the_excerpt();
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite Scroll and imagesLoadedWorked beautifully! And, for those wondering, with Infinite Scroll activated, the code above goes on the “Settings” page for the Infinite Scroll plugin in the “Callback” section.
Forum: Fixing WordPress
In reply to: Question: Using Loop to display multiple authors?Howdy Jeremy,
I’ve tried that as well and, with the code above, it simply takes the last author and displays their info. I’ve gone over the documentation in pretty lengthy detail – but I’ll continue looking :).
Thank you Jeremy. Any additional suggestions are very welcomed,
-Jonathan
Forum: Themes and Templates
In reply to: Tutorial: How To Create A WordPress Theme@epicalex: Thanks for the heads up. Link is fixed :). Since launching the tutorial this morning, I’ve redone my blog design a bit, but for the sake of the tutorial, I’ll leave the preview as is.
@samboll: Hey, as someone who’s benefited greatly from WordPress over the years, this is the very least I can do :). Thanks for your support. I’m looking forward to contributing more!
Forum: Themes and Templates
In reply to: Tutorial: How To Create A WordPress ThemeYou’re very welcome :)! Glad to hear it was able to help.
Forum: Themes and Templates
In reply to: Integrating WordPress in an existing webpage templateI wrote a tutorial awhile back that may be useful, check it out https://www.jonathanwold.com/tutorials/wordpress_integration –
-Jonathan
Forum: Requests and Feedback
In reply to: Paid theme creation and customization?*chuckles*.. The idea is that you say what you would “like” to earn and eventually you’ll work your way up there ;). I’ve still got a ways to go, hehe.
-Jonathan
Forum: Requests and Feedback
In reply to: Paid theme creation and customization?Hey guys! Thanks for the recommendations :). I’ve spent the last hour or so going through a bunch of tutorials.. this stuff is something I really enjoy doing, I just don’t think I’m quite good enough yet! ; )
Time for sumore research!
-Jonathan
P.S. jonathan(at)woldboys dot com is my email ??
Forum: Fixing WordPress
In reply to: Parent categories for links… “Link directory”I’m very interested in this one :). I’m wanting to create a “recommendations” site with WordPress and I want a clean way to organize a bunch of links.
Forum: Fixing WordPress
In reply to: Change “Site Admin” to something else on sidebar?If you mean in the admin area, that would be in wp-admin/index.php around line 106 ;). If you want to use HTML in it, replace:
<h2><?php _e(‘Dashboard’); ?></h2>
With:
<h2><your HTML stuff></h2>
Enjoy!
-Jonathan