borellidesigns
Forum Replies Created
-
Hi @gioni,
I tried Safe Mode and that didn’t help…I was still receiving the error. Again it is only in Windows.The activities tab shows a Spam form submission denied – not from my IP address, but probably from the emulator I’m using for testing through BrowserStack.
I turned OFF Other Forms – Protect all forms on the website with bot detection engine on the Antispam settings page and that seemed to work.
I’m now able to keep the WP Cerber plugin activated and upload files through the Gravity Form in Windows.
Should be noted and probably tested for a better resolve in a future release.
Thanks for pointing me in the right direction!!
Forum: Plugins
In reply to: [Sticky Side Buttons] Extra Text in FooterSame…just did a quick search of the code. I believe it’s related to the new admin option checkboxes for Page, Post, Frontpage. I’m going to dig deeper into the logic.
Forum: Plugins
In reply to: [Sticky Side Buttons] Extra Text in FooterI have the same issue right now. Looks like the coding is spitting out a extra “Page” text from somewhere…I’m going to look into the code now and see if I can identify it.
Forum: Plugins
In reply to: [WooCommerce] Shipping Zones not WorkingI’ve resolved this by creating two shipping zones…..one including all 48 states, and the other only including Alaska and Hawaii. This works now.
I’m just experiencing this exact issue… I thought it was because I didn’t reset the query after displaying the post info. Tried using
<?php wp_reset_query(); ?>but this did not help. Trying to dig deeper into this now.Great, thanks for the quick reply, and for the coupon code! I just picked up a license and tested the pro version. Works like a charm:)
Hi Tobias,
I am having the same issue and glad I came across this post! Is there a way to globally disable table output caching? We have 100+ tables so this would be most helpful in my situation.Thanks,
ShawnForum: Plugins
In reply to: [The Events Calendar] Changing Page TitleI have a similar issue. My events page is displaying the page title as “tribe_events”
I’m not using EventSpot and I’m running into the same issue. As soon as the Constant Contact Plugin is authenticated, I loose the popup functionality in WordPress’ standard visual editor…
@brettv – trying your solution now.
Forum: Plugins
In reply to: [Affiliates] Does this work with Gravity Forms?Thank you! I’ve already purchased/installed and it works great!!
Forum: Plugins
In reply to: [Wufoo Shortcode] Template tag for Wufoo FormHere’s what I’ve currently tried, which does not output anything:
createWufooEmbedJS(‘formHash=’ . $_GET[“id”] . ‘&userName=myusername&autoResize=true&height=2509&header=show&ssl=true’);
Forum: Plugins
In reply to: [LeagueManager] New Update problemWe also experienced the issue updating to version 3.8.1, where we could no longer access the WordPress dashboard (white screen of death).
SOLUTION: Revert back to previous version (version 3.8) until author can address the latest release issue.
Here is the link for previous verion: http://downloads.wp.xz.cn/plugin/leaguemanager.3.8.zip
This fixed our site(s) without having to modify core WP files!!
Forum: Plugins
In reply to: auto-create page upon activation of pluginHi vabmedia!
For our project we decided just to use shortcodes and create buttons for inserting these though the visual editor.
Below is an untested code you could use to auto-create pages with a plugin or theme. Basically, you want to create the post/page, then insert it with a global WP function.
$my_page = array( 'post_title' => 'Our New Auto-Created Page', 'post_content' => 'This is a new page. You can add any content you want here, including shortcodes.', 'post_status' => 'publish', 'post_type' => 'page', 'post_author' => 2, 'post_date' => '2012-08-20 15:10:30' ); $post_id = wp_insert_post($my_page);Check out this post for more info: http://www.problogdesign.com/wordpress/how-to-create-wordpress-posts-in-themesplugins/
Hope this helps!!
~ ShawnForum: Plugins
In reply to: auto-create page upon activation of pluginHi rcvaughn!
Try getting rid of your declaration for ‘post_category’
From your code above, I see that you’re setting the ‘post_category’ and right below setting the ‘post_type’ to ‘page’. You should eliminate the post_category value as it’s only associated to posts and not pages.
Declaring this could be why you’re creating both posts and pages, and/or confusing the loop to basically do what it wants.
I’m developing something similar with this coding so should have some more results to share shortly.
Hope this helps!
~ Shawn
Forum: Plugins
In reply to: [Plugin: Tweet Blender] Tweet Blend Not Loading TweetsMy tweet-archive is stuck on initializing. I was wondering if you could take a look?
http://exactsports.com/blog/tweets-archive/
Thanks in advance!!