qurgh
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form failing with console errorThanks for replying. I disabled a bunch of plugins and was able to get it working, however I couldn’t pin down a specific plugin that was causing it. When I tried turning them back on one at a time there was no issue, but when I reenabled them all it came back.
For now I’m just going to disable them all and work around. The contact plugin is more important. If I have time I’ll go back and see if I can figure out where the problem actually is.
Thank you again for taking the time to reply to this message, and thank you for making the plugin!
Forum: Plugins
In reply to: [PDF Generator for WordPress Elementor] elementor shows empty pageIt’s doing the same thing for me. I had to deactivate it. This was a really useful plugin.
Does anyone know of any alternatives?
Forum: Plugins
In reply to: [BadgeOS Community Add-on] Avatar based Badge not being awardedI manage to get this working. I do so by deleting the badge, the step, the awarded steps, and then re-installed BadgeOS. Then when I tried it again it worked.
I have this same issue.
When I post a page BadgeOS detects the page, and instead of simply recording that it happened, it posts each awarded badge as being of type “page”, which then triggers another awarded badge. The cycle continues until I restart Apache, and I end up with 100s of pages saying I trigger badgeOS.
The same thing happens with posts as well. When I make a post, BadgeOS triggers, and then instead of just recording that I triggered it, it makes a new post of type “post”, which then triggers BadgeOS again. Like with Pages, this continues until I restart apache.
Either way, I then have to spent quite some time going through and deleting all the extra pages, along with all the Buddypress activities it adds.
In order to prevent this, I have had to disable to page and post triggers. To do that go into /wp-content/plugins/badgeos/include/triggers.php, and look for:
‘badgeos_new_post’ => __( ‘Publish a new post’, ‘badgeos’ ),
‘badgeos_new_page’ => __( ‘Publish a new page’, ‘badgeos’ ),and add // in the front of each line to comment them out.
Forum: Plugins
In reply to: [Ecard - Seasonal Greetings] ODude Ecard: Everything is gone!!!!Same thing happened to me. I only just noticed it after a week of there being nothing on the page!
Forum: Plugins
In reply to: [BadgeOS] Not showing Achievement Types on Buddypress ProfileI was able to fix the first issue by changing the slug for “Ranks and Honorifics” from “rank-honorific” to “ranks-and-honorific”. After doing that the “Rank and Honorifics” section appeared.
I had to dump an array to get that info though, and I’m not sure why it expected that one instead of the one I set.
They still do not follow a consistent order. Some people have awards first, others have Ranks, even when they have both.
Forum: Plugins
In reply to: [BadgeOS] Limited Support for the week of 9/14 to 9/18I’m unable to start a new thread with a request for help. Is there some kind of admin-approval that needs to happen first?
I just installed this plugin and had exactly the same issue. I fixed it by adding the following code to my theme’s function.php, so it would load the required media Javascript files:
function add_media_upload_scripts() { if ( is_admin() ) { return; } wp_enqueue_media(); } add_action('wp_enqueue_scripts', 'add_media_upload_scripts');In order to “fix” this issue, I had to comment out the last but one line of functions.php’s getLevelCost:
// $r = apply_filters(“pmpro_level_cost_text”, $r, $level, $tags, $short); //passing $tags and $short since v2.0
With this line it only shows “Per Year”. Without this line is shows prices correctly.
Forum: Plugins
In reply to: [WP eCommerce] Individual Product Pages have no contentI’ve gone through all the pages linked on that page and made sure everything is set the way it should be. The only thing I haven’t setup yet is a payment gateway because the site isn’t live yet.
I added several more products, and their pages are blank too. I also noticed that the Category page is empty as well: http://www.speakklingon.info/merchandise/kli-press/
Thanks.
Forum: Plugins
In reply to: [BadgeOS] Buttons approve / deny not working (frontend)I was unable to find “var badgeos_feedback” in the source of my page.
I’m not using any shortcodes to display the page. I just click on “View Post” after saving the page. Here’s the URL I’m working with: http://www.kag.org/service-record/demonfleet/
I’m having a similar issue with a similar setup.
I have an Ubuntu server running WordPress behind a firewall. The blog itself is able to send me emails (like Auto updates, new users, etc), but Subscribe2 will not send anything to me. I even tried using an SMTP plugin to change to sending through GMail, but that didn’t work either (I could get test mails, but not Subscribe2 mails).
Forum: Plugins
In reply to: [BadgeOS] Buttons approve / deny not working (frontend)I’m having this same issue. The console is saying:
Uncaught ReferenceError: badgeos_feedback is not defined badgeos-achievements.js?ver=1.1.0:4
Neither Approve nor Deny work.