ktrusak
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Page Publish 2] Unexpected Error #1500You’re the best, thank you that worked perfectly
Forum: Plugins
In reply to: [Facebook Page Publish 2] Unexpected Error #1500I am in fact, I’m guessing that isn’t a coincidence
Thank you for the quick reply
Forum: Plugins
In reply to: [Facebook Page Publish 2] Unexpected Error #1500Hi, I ran into the same issue, can anyone else confirm it is still going on?
Forum: Plugins
In reply to: [WooCommerce] Woo commerce not working with IE10Thanks for that, worked for me too! (IE10/Windows8 issue)
Forum: Plugins
In reply to: [Gravity Forms - Update Post] Restricting Update Post to Post AuthorHey, thanks for the follow up. That is probably the best route. I couldn’t figure out the options so I wrote a work around. I’ll post it so if anyone wants it:
function gf_update_author_check(){ if (isset($_GET["gform_post_id"])){ $id = $_GET["gform_post_id"]; $post = get_post( $id ); $user = wp_get_current_user(); if($user->ID != $post->post_author){ wp_redirect(home_url()); exit; } } } add_action('template_redirect', 'gf_update_author_check', 1);
Forum: Plugins
In reply to: [Edit Flow] Making Custom Status PublicThanks for the quick reply. I was able to patch the problem by adding this line:
, 'public' => true
On line 245 of the file plugins/edit-flow/modules/custom-status.php solved the problem. Obviously this isn’t ideal because it is going to be overwritten with every update. Any chance of adding a radio toggle to the admin screen with the next update?
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Insert/Edit HooksOkay great thanks, I’ll take a look
I obviously can’t be sure of how your entire audience would need to handle the roles. For my purposes it is the store owners themselves who need to be able to create/edit locations (from the frontend) just as they would any other post or field. The tricky part is that the slp tables have their own unique setup.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Insert/Edit HooksAlright thanks for the reply. I noticed another user is saying they may have made something for user submitted events. I may hold off I working on this til I see how that shakes out
Forum: Plugins
In reply to: [Store Locator Plus? for WP] New Addon – User submitted locationsHi, I’d be interested in this.
Can users edit their locations too?
Forum: Fixing WordPress
In reply to: Shortcode in do_shortcodeActually this tutorial doesn’t quite address by problem. This tutorial basically combines two shortcodes to execute with a single function.
My problem is trying to insert one shortcode within an opening and closing shortcode. Even with making a new function I still am stuck on not knowing how to put [shortcode2] within [shortcode1] with php
Forum: Fixing WordPress
In reply to: Shortcode in do_shortcodeThanks for the link, looks good
Forum: Fixing WordPress
In reply to: Loading Screen How-ToDo you know of anyway to perhaps display a textbox too(or lightbox, as I have one installed I could just execute with php)?
I figure that way I could just have a note saying ‘if you click the “back” or “refresh” button all the polar bears will die’ or something
Forum: Fixing WordPress
In reply to: The wp-includes folderOkay, I did that instead. Admittedly I skipped reading the comments on the doc when I was trying to find the cause of my problem earlier. Thanks fonglh
Forum: Fixing WordPress
In reply to: [HELP]Mobile Redirect on homepage ONLY to a mobile HomepagePardon the bump on an old post.
Mat Lipe– I tried using your solution, but it seems to redirect all my pages from mobile devices to the selected page. Do you know how to set only one redirect (for the homepage)?
Forum: Fixing WordPress
In reply to: Error Message on fresh install, Help pleaseNevermind, apparently dreamhost is just having some issues.