James Bullis
Forum Replies Created
-
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Select2 is not a functionIf I knock everything down to just 2020 Theme, MEC, and WP Ultimo (which is needed to troubleshoot), I get the same result. If I disable MEC, it works just fine.
Here is a screencast of the troubleshooting: https://www.screencast.com/t/QGMRZ7mAw
Forum: Plugins
In reply to: [Optima Express IDX] Registration Key?I think I figured out the problem. My client signed up for Optima IDX and should be signed up for Optima Express.
Forum: Plugins
In reply to: [Ultimate Fields] Rich Text & File Type FieldsLooks like a fix is coming from Yoast. It was breaking multiple plugins.
Forum: Plugins
In reply to: [Ultimate Fields] Rich Text & File Type FieldsOk, it looks like there is an error in Yoast SEo and it is causing these errors. I will ook into this more and report a fix.
Forum: Fixing WordPress
In reply to: WP_Query – Paginated Visible Post Range – x-y of z ResultsWorked perfect. Thank you for your help!
Forum: Fixing WordPress
In reply to: Making a box bigger and deleting another box?Do you have a Full Width Page Template? If not, I would create one. If you can change the grid_16 wrapper you have the light green in to grid_24 it will expand to the width of the header.
Then remove the grid_8 wrapper, this is holding that orange box.
Forum: Fixing WordPress
In reply to: Large XML File Fails to ImportIt sounds to me like your host is timing out. Check out http://wordpress.org/support/topic/failure-to-import-and-invalid-post-type-errors?replies=20. They found a workaround that included increasing the memory limit and the socket limit.
Forum: Fixing WordPress
In reply to: No data received (Website not accessible)503 usually indicates that WordPress is not connecting to the database. I would normally check your Wp-Config at the database settings but I think the problem is being hosted on GoDaddy. I always had this same problem when I was hosting on GoDaddy. After switching I never had the problem again.
Forum: Fixing WordPress
In reply to: My website turned white and all info is goneChange your permalinks back. It’s set everything to look at /home-page. I would also check your general settings an make sure that the WordPress URL and the Site URL are going to your root domain.
Then, create a page for your home page and go to Reading and Change front page displays as, change to static and select the page you created. I think this will get you set up.
I think I found a solution for you as I found this thread looking for a solution.
If you go to /public_html/wp-content/plugins/donate-plus and edit donate-plus.php. Look around line 450 and you will find the following code:
$output .= ' <input type="hidden" name="notify_url" value="'.$notify.'"> <input type="hidden" name="item_name" value="'.$dplus['donate_desc'].'"> <input type="hidden" name="business" value="'.$dplus['paypal_email'].'"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="rm" value="1"> <input type="hidden" name="return" value="'.$tyurl.'"> <input type="hidden" name="currency_code" value="'.$dplus['paypal_currency'].'"> <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted"> <p class="submit"><input type="image" src="'.$button.'" border="0" name="submit" alt=""> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p> </form>';If you look at this in Firebug you will see that a
<br>tag is automatically being placed after each hidden input. I found that if I either remove the hard breaks in the code, or place a space between each line, like:$output .= ' <input type="hidden" name="notify_url" value="'.$notify.'"> <input type="hidden" name="item_name" value="'.$dplus['donate_desc'].'"> <input type="hidden" name="business" value="'.$dplus['paypal_email'].'"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="rm" value="1"> <input type="hidden" name="return" value="'.$tyurl.'"> <input type="hidden" name="currency_code" value="'.$dplus['paypal_currency'].'"> <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted"> <p class="submit"><input type="image" src="'.$button.'" border="0" name="submit" alt=""> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p> </form>';that the hidden fields are no longer visible as breaks and it fixes this issue of the space.
Forum: Plugins
In reply to: [Wordbooker] [Plugin: Wordbooker] Timeline PostingOh wow, I didn’t even consider that it would show up different for me when I’m logged into the profile. I checked the profile from a different user and it’s working just like it should be. Timeline is a strange character. Thanks for taking the time Steve. I really enjoy the plugin.
Forum: Plugins
In reply to: [Staff Directory] [Plugin: Staff Directory] Photos don't show…I’m wondering if the permissions for your upload folder are correct. You might make sure that /wp-content/uploads/staff-photos is set to 755.
Forum: Plugins
In reply to: Page Links To Plug in – does not open new browser windowLooked into this issue more and they found a fix that will be showing up in the next version. Thanks go to a dev named “Head”.
Simple workaround is change
from:
add_filter( ‘wp_list_pages’, ‘txfx_page_links_to_highlight_tabs’);
to:
add_filter( ‘wp_list_pages’, ‘txfx_page_links_to_highlight_tabs’, 9);
in page-links-to.php at about line 197.
I made the changes, activated all in one, and poof, it works.
Forum: Plugins
In reply to: Page Links To Plug in – does not open new browser windowI think you may be on to something. Using the latest versions of WP, Page Links to, and All in One SEO pack. If I disable the SEO plugin this features begins to work.
Forum: Installing WordPress
In reply to: 2.7.1 Install problemI can access my admin but the pages are coming up with error 500s. Did you find out what you needed to change?