efran1526
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Autoptimize prevents MapPress maps from displayingIt was a broken code on MapPress side. The owner repaired with an update and all is good now.
Forum: Plugins
In reply to: [Column Shortcodes] Failed to load pluginBurt! Thank you! the CTRL reload worked. I’m a happy camper again.
Eric
Forum: Plugins
In reply to: [Column Shortcodes] Failed to load pluginThat’s fine. It wasn’t to hide anything, just found them to be too long.
Forum: Plugins
In reply to: [Column Shortcodes] Failed to load pluginHi and thank you for your suggestion which I was able to change through the editor. That works fine when viewing the live webpage. It removes the shortcodes that were displaying. However it doesn’t resolve the issue when i’m updating my pages.
With Column Shortcodes plugin deactivated this is what my page should look like when I’m editing my WordPress page. https://www.stclairgardens-bia.com/wp-content/uploads/2020/08/Deactivated-Column-Shortcode.png
With Column Shortcodes plugin activated this is how my page editor displays. https://www.stclairgardens-bia.com/wp-content/uploads/2020/08/Activated-Column-Shortcode.png
Is there a way to fix this issue without me having to deactivate Column Shortcodes plugin every time I need to update my pages? Are you working on an update that will resolve the issue and work with WordPress 5.5?
Thank you again,
Eric
- This reply was modified 4 years, 3 months ago by Jan Dembowski. Reason: Expanded shortlinks
Forum: Fixing WordPress
In reply to: Multiple Fatal Errorswhere do i apply this: //for administration
define( ‘WP_MAX_MEMORY_LIMIT’, ‘1024M’);this is what appears at the beginning of /wp-includes/default-constants.php:
<?php
/**
* Defines constants and global variables that can be overridden, generally in wp-config.php.
*
* @package WordPress
*//**
* Defines initial WordPress constants
*
* @see wp_debug_mode()
*
* @since 3.0.0
*
* @global int $blog_id The current site ID.
* @global string $wp_version The WordPress version string.
*/
function wp_initial_constants() {
global $blog_id;/**#@+
* Constants for expressing human-readable data sizes in their respective number of bytes.
*
* @since 4.4.0
*/
define( ‘KB_IN_BYTES’, 1024 );
define( ‘MB_IN_BYTES’, 1024 * KB_IN_BYTES );
define( ‘GB_IN_BYTES’, 1024 * MB_IN_BYTES );
define( ‘TB_IN_BYTES’, 1024 * GB_IN_BYTES );
/**#@-*/// Start of run timestamp.
if ( ! defined( ‘WP_START_TIMESTAMP’ ) ) {
define( ‘WP_START_TIMESTAMP’, microtime( true ) );
}$current_limit = ini_get( ‘memory_limit’ );
$current_limit_int = wp_convert_hr_to_bytes( $current_limit );// Define memory limits.
if ( ! defined( ‘WP_MEMORY_LIMIT’ ) ) {
if ( false === wp_is_ini_value_changeable( ‘memory_limit’ ) ) {
define( ‘WP_MEMORY_LIMIT’, $current_limit );
} elseif ( is_multisite() ) {
define( ‘WP_MEMORY_LIMIT’, ’64M’ );
} else {
define( ‘WP_MEMORY_LIMIT’, ’40M’ );
}
}if ( ! defined( ‘WP_MAX_MEMORY_LIMIT’ ) ) {
if ( false === wp_is_ini_value_changeable( ‘memory_limit’ ) ) {
define( ‘WP_MAX_MEMORY_LIMIT’, $current_limit );
} elseif ( -1 === $current_limit_int || $current_limit_int > 268435456 /* = 256M */ ) {
define( ‘WP_MAX_MEMORY_LIMIT’, $current_limit );
} else {
define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ );
}Forum: Fixing WordPress
In reply to: Multiple Fatal ErrorsThis is line 1995 in wp-dp.php.
1995 while ( $row = mysqli_fetch_object( $this->result ) ) {
Forum: Fixing WordPress
In reply to: Multiple Fatal ErrorsThank you for the information but I just discovered that this particular page is corrupt. On the right side of page there is information that I never put on this page and i’m just now seeing it. https://www.arvfd.ca/call-activity-archives/
Unless there is a tool that will allow me to access this page to edit it, I think I have no other choice other than recreate it.
Thank you again for your help.
Forum: Fixing WordPress
In reply to: Page full of adsYes, it’s one of my sites. The other two are fine. I have sent the information to Host and they are looking into it. My sites are not local. They are all web based from the Host.
Thanks again,
Eric
Forum: Fixing WordPress
In reply to: Specific Twitter FeedsHi Steve,
Thank you for the information. This is exactly the info I have been searching for.
I appreciate your help and can now class this as resolved thanks to WordPress forums.
Eric
Forum: Plugins
In reply to: [WP-Polls] Default Poll LimitThank you for answering my question so soon.
Much appreciated.
Eric
Forum: Fixing WordPress
In reply to: Expand HeadingsPerfect!!! Thank you very much for your help. It’s just what I wanted.
Eric
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] space between table and imageThank you!! It’s perfect!
Eric
I disabled p2pConverter plugin and the Visual Editor is opening and working fine now.
I think this is resolved for me now.
Forum: Fixing WordPress
In reply to: Recent Post WidgetThank you helping me out. Your information was helpful but as I looked at the CSS I noticed your exact directions were already applied but it still displayed the indented bullet style. I found another widget “Magic Post Listing” and it’s doing exactly what I need it to do. I have it set to 10 posts. What i’m trying to figure out now is how to display at the bottom of the 10th post the word “archives or few more, etc.” so readers are able to see posts beyond the 10 post but that is also very recent. Is there a way I can do this?
Thank you again, for your help.
efran