berchman
Forum Replies Created
-
Why would you need to run WPBakery at all if you’re not actively using it to edit the front end?
So the WPBakery plugin needs to run to enable this ONE shortcode to work so that users can log in?
So no WPBakery, no LearnPress, is that right??
Where in the documentation would I EVER find that??????
You might want to correctly list in your documentation ALL the dependencies required to run a website using LearnPress.
Right now your documentation for LearnPress is abysmal.
- This reply was modified 3 years, 9 months ago by berchman.
*following
Also having login issues. Login form/registration form is gone.
Just seeing shortcodes.Currently having the same issue.
The login form is not appearing, but the
[thim-login-form]
shortcode is.Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Possible contributions to the plugin?Donncha,
Any update on the status of this fine plugin?
Is there an update coming soon?
Thank you.
Forum: Plugins
In reply to: [Crayon Syntax Highlighter] Can someone adopt this plugin?@ehsanaghaei any update on the plugin takeover?
Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Divi CompatabilityI would add that if you are using Divi and use the plain editor with code it also does not highlight syntax.
Seems like this doesn’t want to work properly with Divi
Forum: Plugins
In reply to: [Indeed Jobs] Google Search Console ErrorsWe’re having the same issue with our website.
No explicit job listings on the page yet getting “Critical” error messages in the search console from Google. And the Search Console inside of Google isn’t providing other clues or being helpful.
Unsure how to resolve.
Perhaps an error on Google’s side?Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Html Entitieswww.ads-software.com was giving me issues with trying to get the html to look right.
Here is a link to a screen capture of the code in action.
This should give you a clear picture of what is going on:
https://www.evernote.com/l/AAWzPCo0FWpAEpcVRHLzWInA0HJGR95Rkj8Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Html EntitiesSame issue here. VERY frustrating since its been in use for some time and there are many posts with code references that depend on this.
I too have done the plugin on/off dance and I cannot find a plugin conflict.
I also used a default WordPress theme (twenty sixteen) and the issue persisted.
I also had my web host check (wpengine) to make sure they did not see any issues from their end.
In Summary:
This:
<!-- PWA Manifest --> <link rel="manifest" href="/path/to/manifest.json">
Gets turned into this:
<!-- PWA Manifest --> <link rel="manifest" href="/path/to/manifest.json">
- This reply was modified 7 years, 3 months ago by berchman. Reason: HTML not displaying properly
- This reply was modified 7 years, 3 months ago by berchman.
- This reply was modified 7 years, 3 months ago by stephencottontail.
This looks to be working really well!
Thanks for being so responsive to our needs.
Really appreciate the attention and for taking care of this so quickly.Thanks!!
Excellent! Thanks for the quick reply and update. Looking forward to the fix in the update.
Forum: Fixing WordPress
In reply to: Sudden mySQL error on one page onlysamhawcroft I am having the same type of error with a site I’m working on.
My error shows up like this:
00000/0): in /homepages/40/d253519779/htdocs/whc/wp-includes/wp-db.php on line 1811
Warning: Packets out of order. Expected 1 received 57. Packet size=3289859 in /homepages/40/d253519779/htdocs/whc/wp-includes/wp-db.php on line 1811
Warning: mysqli_query(): MySQL server has gone away in /homepages/40/d253519779/htdocs/whc/wp-includes/wp-db.php on line 1811
Warning: mysqli_query(): Error reading result set’s header in /homepages/40/d253519779/htdocs/whc/wp-includes/wp-db.php on line 1811
On this page there are 3 images and text. Nothing crazy going on.
I’m wondering if this is an error that we on the WordPress side can fix, or do I need to get in touch with the webhost and have them look at the database?
Forum: Plugins
In reply to: [WP-PageNavi] Page 3 through 6 not displaying correct number of blog posts.Here is the php where wp_pagenavi(); is inserted.
<?php /** * Loop - Blog * * This is the loop file used on the "Blog" page template. * * @package WooFramework * @subpackage Template */ global $more; $more = 0; woo_loop_before(); // Fix for the WordPress 3.0 "paged" bug. $paged = 1; if ( get_query_var( 'paged' ) ) { $paged = get_query_var( 'paged' ); } if ( get_query_var( 'page' ) ) { $paged = get_query_var( 'page' ); } $paged = intval( $paged ); $query_args = array( 'post_type' => 'post', 'paged' => $paged ); $query_args = apply_filters( 'woo_blog_template_query_args', $query_args ); // Do not remove. Used to exclude categories from displaying here. remove_filter( 'pre_get_posts', 'woo_exclude_categories_homepage', 10 ); query_posts( $query_args ); if ( have_posts() ) { $count = 0; ?> <div class="fix"></div> <?php while ( have_posts() ) { the_post(); $count++; woo_get_template_part( 'content', get_post_type() ); } // End WHILE Loop } else { get_template_part( 'content', 'noposts' ); } // End IF Statement woo_loop_after(); wp_pagenavi(); ?>
Hi,
Just adding that I too had a site on Siteground and the proposed solution in this thread to add<IfModule mod_security.c>
SecFilterRemove 001838
</IfModule>To the htaccess file worked for me as well.
Hope this helps.
Cheers,
BertForum: Plugins
In reply to: [PDF24 Article To PDF] Create PDF from separate template?Hi Jenny,
I wonder if you ever got this to work?
I am presently looking for exactly this type of solution.
A PDF dynamically generated off of custom post type data stored in the WordPress database.Any luck, tips, or insights?
Thanks,
Bert