fidgeter
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Error connecting to SquareI tried changing the URL to add the characters and it gets to the “That’s my site! Redirect me!” page and when I click the button I get a “Sorry, you do not have permission to manage the Square connection.” error when it goes back. The Woocommerce app is in my App Integrations on Squareup but it just won’t connect and I don’t know if I’m doing something wrong but I suspect it’s something plugin related. It was fine until a few days ago when it said I had to disconnect and reconnect square and now I cannot reconnect square. I’ve tried uninstalling and reinstalling the plugin as well to no effect.
Edit: That was after I did the change that Peggy had suggested with the unicode characters in the url. After correcting that the first error went away but the “Sorry, you do not have permission to manage the Square connection.” error when I click “That’s my site! Redirect me!” is now my roadblock.
- This reply was modified 4 months, 1 week ago by fidgeter.
Forum: Plugins
In reply to: [WPS Hide Login] Lost Password link not workingThank you. I had them add the following to exclusions and it’s working now. I appreciate you and your work.
arg: action=rp
I did not. I ended up using another plugin that allows you to limit product visibility based on login account access level but that basically just added a display:none to those products and caused other problems. Fortunately we’ve moved beyond the need for that plugin and this one is still being used for certain pages.
I believe this was the case, although I haven’t had a chance to reproduce it and my sandbox doesn’t have HTTPS.
The site is set up HTTPS. In wordpress settings both the admin and site URL are HTTPS. The pages were blocked. On one page a link that had in the WYSIWYG editor been inserted as HTTP for one of those blocked pages was sitting there. When clicking on that link it was going to a 404 error page instead of the redirected “Coming Soon” page. That’s my theory anyway.
It wasn’t using any caching and those were the only other settings. I ended up just using the functions.php file to restrict access to the shop pages until we were ready. I did come across another bug while working though. One of the links was hard-coded in the text on a page and went to HTTP instead of HTTPS. The result was it went to a 404 error page instead of redirecting to the custom URL. So good news is it blocked access, bad news is it didn’t forward where I had wanted it to.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not working with ChromeDid you all find a solution to this? I just realized it affects one of my clients’ websites.
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] ACF ErrorI too have this error, when updating the Options page that is using a number of ACF fields. All of it on the same lines.
Edit: To clarify it seems to work fine on other pages with ACF Fields. Only the Options page throws these errors at me.
- This reply was modified 6 years, 5 months ago by fidgeter. Reason: added clarification
Forum: Plugins
In reply to: [WP Category Tag Cloud] A non-numeric value encounteredI’m not sure if you found the answer or not yet but I ran into this just now after upgrading to PHP7.
I deleted this section beginning at 207 and the error went away.
if (isset($instance[$instance['taxonomy'] + '_id']) && count($instance[$instance['taxonomy'] + '_id']) > 0 && !in_array($tag->tag_id, $instance[$instance['taxonomy'] + '_id']) ) { continue; }
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Moving to a new siteThank you so much. You’re awesome!
Forum: Plugins
In reply to: [Quick Buy For Woocommerce] quick buy link shortcode button not workingI never found one. =(
It loads fine on the BD pages. I have a page that is outside of the BD loop, but it loads some of the BD custom fields. I just didn’t know if there was a way to “poke the bear” so to speak and get the CSS to load on a page that wasn’t part of the BD plugin. I don’t need to change any of the CSS, just load what currently exists. If I do a custom one will it load on pages that aren’t officially part of the BD loop?
Thank you for your quick response,
-JeremyForum: Hacks
In reply to: Custom Capability for Custom Post Typei just want to say thank you for this post. It helped a lot.
Thank you. That link had another link I had overlooked before. https://businessdirectoryplugin.com/docs-old/matching-the-design-to-your-theme/ and it tells you what to do with the template file. Sorry about that.
Thank you for your response. My optimal solution may be to just not have it query at all and manually create the page with the list and link them to the relevant Business Directory pages. It’s a little more work on my part but would mean a lot less overhead for the server.
Forum: Plugins
In reply to: [WOW Slider] [Plugin: WOW Slider] "Wrong slider" message during uploadHey rebelnola,
What I did was basically pick apart the HTML version and plug the parts into my WordPress template. I put the Stylesheet in the header.php file.
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/wowslider/style.css" media="all" />
And then I put the slightly modified unordered list in my template files.
Here’s an example.<div id="wowslider-container1"> <div class="ws_images"><ul> <li><img src="<?php bloginfo('template_directory'); ?>/wowslider/homepage/images/aerial_photo.jpg" alt="courtyard_aerial_photo" id="wows1_0"/>Aerial</li> </ul> </div> </div>
Note I added the template directory before the wowslider directory.
And then I put the javascript in the footer.php file before closing body tag.
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/wowslider/wowslider.js"></script> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/wowslider/script.js"></script>
I don’t know how familiar or comfortable you are with modifying wordpress templates so if you have any questions please let me know.
EDIT: The downside to this is all pages use the same transition timing and effect and possibly size(not sure because all my rotators are the same size on my pages). The upside is you only need to add the unordered list section to the template pages where you want it. To modify any of this you could simply have a different header and footer for your template page. Again if you’re not familiar with this please let me know and I’ll try to help. =)