codejp3
Forum Replies Created
-
Forum: Plugins
In reply to: [bbp style pack] Multisite CompatibilityWorking on it.
I’ll have 5.2.8 posted with:
1.) activation hook function/version updating properly
2.) your topic count changes
3.) a few extra “if isset()” checks within settings files to prevent the dozen or so “Warning: Trying to access array offset on value of type bool” messages that keep popping up in my debug log….probably be ready later today
Forum: Plugins
In reply to: [bbp style pack] with 5.2.6 all widgets are outNOTE: To make sure you don’t have multiple versions of the plugin installed, follow the directions posted here:
https://ww.wp.xz.cn/support/topic/styling-issue-26/#post-16435819Forum: Plugins
In reply to: [bbp style pack] Styling issue3 steps that will allow you to manually install it:
1.) When you download the zip file, open it with your archive program of choice and rename the root directory within the zip file from “bbp-style-pack-5.2.7” to just “bbp-style-pack” and re-save the zip file.
2.) In the “Plugins” admin page, deactivate the current bbp-style-pack plugin.
3.) From that same “Plugins” admin page > at the top next to the title, click “Add New”. Then from the “Add Plugins” page > at the next to the title click “Upload Plugin” and upload the zip file, and activate it.
The issue you experienced comes from having 2 active bbp-style-pack plugins – one in the “bbp-style-pack” directory, and one in the “bbp-style-pack-5.2.7” directory. Renaming the zip file directory in step 1 should take care of it. Pro-actively deactivating 5.2.6 in step 2 is probably unnecessary, but guarantees you won’t get conflicts.
Forum: Plugins
In reply to: [bbp style pack] Multisite Compatibility@robin-w – 5.2.7 published on GitHub:
https://github.com/codejp3/bbp-style-pack/tree/5.2.7Direct Download:
https://github.com/codejp3/bbp-style-pack/archive/refs/heads/5.2.7.zipFixes 2 reported Bugs:
1.) Missing Widgets
2.) Unread Icon Placement/AlignmentBoth fixes took place in /bbp-style-pack.php dealing with the included files for frontend/admin/both, and their order.
Other than that, so far so good. I’ll keep checking for any more reported bugs tomorrow and over the weekend.
Forum: Plugins
In reply to: [bbp style pack] Styling issue@ajtruckle – I’m pushing version 5.2.7 to @robin-w now. Until it’s released officially, you can download it directly from here:
https://github.com/codejp3/bbp-style-pack/archive/refs/heads/5.2.7.zip
I’d love to hear if you still have any other issues after updating to 5.2.7!
Forum: Plugins
In reply to: [bbp style pack] with 5.2.6 all widgets are out@oscowordpress1 – I’m pushing version 5.2.7 to @robin-w now. Until it’s released officially, you can download it directly from here:
https://github.com/codejp3/bbp-style-pack/archive/refs/heads/5.2.7.zip
I’d love to hear if you still have any other issues after updating to 5.2.7!
Forum: Plugins
In reply to: [bbp style pack] Styling issueGood news and Bad news!
Good News: I was able to replicate this issue on my end, and have narrowed it down to the improper order for the unread icon (should be before the forum icon, not after).
Bad News: I haven’t figured out exactly what’s causing it yet. Still working on it, and will issue a fix as soon as it’s figured out.
Forum: Plugins
In reply to: [bbp style pack] Styling issueSo far I’ve double-checked all code related to the “unread post icon” and forum title/descriptions, and the only thing changed related to that for 5.2.6 was tabs/spacing within the code to make it more readable, but nothing that would affect how the code is rendered on the front end of the site.
With that said, clearly you have an alignment issue. I can’t come up with a quick CSS tweak since there’s no elements to target and distinguish whether the unread icon is visible or not. That means that CSS code to fix it when the unread icon is displayed, breaks the alignment for “logged out”/ no unread icon displayed. Keep good alignment with no unread icon breaks the alignment for displaying the unread icon.
The only way I can figure to fix your alignment issue is to actually make some changes to the code for how unread icon / forum title / forum description is rendered.
Working on that now and will post a follow-up.
I don’t think it’s the cause of the issue, but I do see that you’re using “autoptimize” caching plugin. Out of curiosity, can you do me a favor and clear the CSS file cache for that plugin and do a “hard refresh” (hold ctrl key while clicking “refresh” in the browser) just to see if there’s any difference? I doubt it, but I’d like to eliminate that as a possible culprit nonetheless.
Forum: Plugins
In reply to: [bbp style pack] with 5.2.6 all widgets are outA temporary fix is in the main plugin file: bbp-style-pack.php
Copy Lines 403 & 404 and then comment it out like this (or delete them altogether):
// include(BSP_PLUGIN_DIR . '/includes/shortcodes.php'); // include(BSP_PLUGIN_DIR . '/includes/widgets.php');Then paste those 2 lines within the “frontend-only files” starting on line 412, so it looks like this:
// frontend-only files if ( ! is_admin() ) { include(BSP_PLUGIN_DIR . '/includes/buddypress.php'); include(BSP_PLUGIN_DIR . '/includes/functions_bugs.php'); include(BSP_PLUGIN_DIR . '/includes/functions_topic_count.php'); include(BSP_PLUGIN_DIR . '/includes/shortcodes.php'); include(BSP_PLUGIN_DIR . '/includes/widgets.php'); }This will be patched in the next release, but those code changes will hold you over until then.
Forum: Plugins
In reply to: [bbp style pack] Styling issue5.2.6 is largely my code edits/additions. Wasn’t able to repIicate the issue locally on my dev server, and don’t recall any code changes that would affect the forum description text. I just created an account on your site to test it out there and either patch it for an upcoming release, offer some CSS to fix it, or both.
I’ll check back in once my account is active (codejp3).
Forum: Plugins
In reply to: [bbp style pack] Multisite CompatibilityKeeping a close eye on the support forum over the next few days….
Forum: Plugins
In reply to: [WPS Hide Login] Maintenance Mode Redirection IssueAppreciate the reply, but I think you’re giving up too easy.
Why can’t I add a check in the bbPress login for “if wps-hide-login active”, and then get the secret slug option value and use that instead of the default wp-login.php?
Forum: Plugins
In reply to: [Plugin Notes Plus] Plugin Abandoned?Got it! Thanks for update!
Forum: Plugins
In reply to: [bbp style pack] Quotes not working with “Text Editor Only”Changed the code slightly from what’s above. Instead of setting flags in the switch/case and then enqueueing based on those flags later, just combined them so there’s no flags….it just enqueues directly in the switch/case based on the active editor(s).
Functionality is identical. Just saved about 15 lines of unnecessary code by combining.
Forum: Plugins
In reply to: [bbp style pack] Multisite Compatibility@robin-w – 5.2.6 updated to fix the quote/tinymce issue. Details here:
https://ww.wp.xz.cn/support/topic/quotes-not-working-with-text-editor-only/#post-16415878