exelexys
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blockify] Submenu positionIt worked! Would’ve never noticed this.
Thanks very much!
Forum: Themes and Templates
In reply to: [Blockify] Submenu positionSharing a screenshot of the submenu location
Tracked down the problem. It was a WordPress memory limitation issue.
Added the following in wp-config.php and no more issues activating the three plugins (and several more):
define( 'WP_MEMORY_LIMIT', '256M' );
Thanks for your help!
Your solution fixed the issue. No more problems activating the three plugins (and others).
Thanks very much!
Thanks for looking into this. Based on the screenshot you provided, another, deactivated plugin might be the culprit.
Here’s a link to the Site Health Info:
https://pastebin.com/GYQw5eczContents of debug.log file after enabling debugging in wp-config.php and enabling all three plugins:
[07-Feb-2023 05:25:55 UTC] PHP Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 2621440 bytes) in /home/<dir>/public_html/wp/wp-admin/includes/media.php on line 1682
Does more memory need to be allocated by the hosting company somehow?
Thanks in advance!
There problem doesn’t occur with Genesis Blocks. Genesis Blocks Pro causes the error. Let me know if you need this.
Specific error shown in browser
There has been a critical error on this website. Please check your site admin email inbox for instructions. Learn more about troubleshooting WordPress.
Errors in Developer Tools Console:
GET https://hpsi.org/wp/wp-admin/plugins.php [HTTP/1.1 500 Internal Server Error 248ms] Error: Could not establish connection. Receiving end does not exist. content_script_bundle.js:223:887
Does this help?
Having trouble accessing the value of, in this case, the email address field using the event listener you provided.
Added class name join-email-address to the email field within the form, but on submit, the value of:
const email_address = document.getElementsByClassName("join-email-address")[0].value;
or
var email_address = document.getElementsByClassName("join-email-address")[0].value;
is undefined.
Any ideas?
Great. Will try it out.
Thanks!
Forum: Themes and Templates
In reply to: [Blockify] Fonts + Gutenberg Plugin?Think we’re good. Thanks for explaining!
Forum: Themes and Templates
In reply to: [Blockify] Blockify templates not selectableSomething strange is definitely afoot with selectable templates, not only in the parent theme, but also in the child theme generated using Create Block Theme plugin.
Same three templates are selectable in the child theme:
Default template
Blank
Full WidthStarting to think creating my own templates might be causing this issue?
Forum: Themes and Templates
In reply to: [Blockify] Creating Blockify child themefront-page.html wasn’t generated in the child theme when using Create Block Theme.
Renaming the file in the parent theme file system enabled the home page set under Settings > Reading Settings > Your homepage = Your latest posts to work as expected in both the parent and child themes.
Example starter child theme would be much appreciated!
Forum: Themes and Templates
In reply to: [WP FanZone] Child theme style problemHope the theme creator modifies the way the stylesheets are loaded or the way they work so problems like these can be avoided in the future.
Thanks very much for your help. Greatly appreciated!
Forum: Themes and Templates
In reply to: [WP FanZone] Child theme style problemThanks verrrry much, that did the trick!
Couple of questions, to avoid this problem in the future:
– why did you need to set priority on add_action()?
– in what order should parent and child themes load stylesheets, and how did this theme load them?Thanks again!
Forum: Themes and Templates
In reply to: [WP FanZone] Child theme style problemSite is under development but have just made it available for troubleshooters =):
Menu anchors retain parent theme color on hover and menu/submenu anchors shouldn’t be underlined on hover.
Note this is the content of child theme functions.php:
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') ); }
Tried removing the child stylesheet enqueuing since it occurs in parent functions.php but it didn’t seem to help.
Thanks in advance!
Forum: Themes and Templates
In reply to: [WP FanZone] Child theme style problemSomething is awry with stylesheet loading.
At the very least, though the child stylesheet appears in <head> its styles don’t appear to be loading:
<link rel='stylesheet' id='parent-style-css' href='https://windycitygreek.com/wp-content/themes/wp-fanzone/style.css?ver=4.2.2' type='text/css' media='all' /> <link rel='stylesheet' id='wp_fanzone_slider-css' href='https://windycitygreek.com/wp-content/themes/wp-fanzone/css/slider.css?ver=4.2.2' type='text/css' media='screen' /> <link rel='stylesheet' id='wp_fanzone_responsive-css' href='https://windycitygreek.com/wp-content/themes/wp-fanzone/css/responsive.css?ver=4.2.2' type='text/css' media='screen' /> ... ... <link rel='stylesheet' id='wp-fanzone-style-css' href='https://windycitygreek.com/wp-content/themes/wp-fanzone-child/style.css?ver=4.2.2' type='text/css' media='all' />
This likely isn’t the cause of the original problem, but a likely a symptom of (faulty) child theme creation.
Troubleshooting out loud.