jadmadi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spectra One] Theme crachd after update to latest versionThank you @mohsinbsf
Forum: Themes and Templates
In reply to: [Spectra One] Theme crachd after update to latest version2024-05-17 07:18:21.764884 [NOTICE] [1270206] [172.71.123.208:11464:HTTP2-1#madi.se-443] [STDERR] PHP Fatal error: Uncaught TypeError: Swt{closure}(): Argument #1 ($theme_json) must be of type WP_Theme_JSON_Data, WP_Theme_JSON_Data_Gutenberg given, called in /home/../../../public_html/wp-includes/class-wp-hook.php on line 324 and defined in
/home/../../../public_html
wp-content/themes/spectra-one/inc/compatibility/spectra.php:37I had the same issue and resorted to roll back to the previous version. Now, with the fix-update the system should skip the buggy-release.
Forum: Plugins
In reply to: [Disable Elementor Editor Translation] Arabic language keep showingI have the same issue with an Arabic language site and Elementor.
Any planned update to this plugin?- This reply was modified 4 years, 4 months ago by jadmadi.
I’m having the same issue, apparently it’s the new build bug, no?
Forum: Plugins
In reply to: [Corona Virus Data] Listing group of countriesHow about Syncing API data into a database on an hourly basis and then select from the database? Maybe with a Javascript to keep the data live?
I unchecked “Check this box if you want to include the external JavaScript files (recommended).” in the User-Submitted-posts and things worked just fine.
Forum: Plugins
In reply to: [Store Locator WordPress] Conflict with User-Submitted-Posts pluginI unchecked “Check this box if you want to include the external JavaScript files (recommended).” in the User-Submitted-posts and things worked just fine.
Forum: Plugins
In reply to: [WP Store Locator] The list disappeared after adding 20 locationI think I found the problem but I would appreciate your support in finding a solution.
I disabled User-submitted-posts plugin, and WP Store Locator worked just fine, apparently a conflicting script though I tried no_script attribute. `[ASL_STORELOCATOR no_script=”1″]
`- This reply was modified 6 years, 5 months ago by jadmadi.
Forum: Fixing WordPress
In reply to: Allowed memory size exhausted (tried to allocate 72 bytes)Hey @dartiss
Well, the point is that my blog is a fresh installation with zero traffic. I do believe that WordPress does not consume that much, if I recall correctly it can run with 48Mb of memory as long as the traffic is minimal and the installation is clean, and minimal is way more than what I have now of traffic ??Unfortunately I do not have room to expand the current memory, but again it is a fresh and clean installation.
I have other WordPress instances on the same server with the same configurations and they work just fine.
What’s happening is rather weird IMO.
Forum: Plugins
In reply to: WP Super Cache and Dreamhost PSsame here, I wonder what’s causing the problem
Forum: Plugins
In reply to: [Plugin: Useful 404’s] not working & permalinkThe plugin isn’t sending any email upon 404, any idea?
Forum: Fixing WordPress
In reply to: Custom loops and .htaccess – HELP!!!I do such thing with custom queries
<?php
$Query = mysql_fetch_assoc(mysql_query("SELECT post_id FROM wp_post2cat WHERE category_id !='3' AND category_id !='2' ORDER BY rel_id DESC LIMIT 1"));
$Last_Blog_Post = mysql_fetch_object(mysql_query("SELECT post_title, post_content, post_date, guid FROM wp_posts WHERE ID='$Query[post_id]' AND post_status ='publish'"));
?>
<div id="last_news_item"><h3><?=$Last_Blog_Post->post_title?></h3>
<p>
<small><?=$Last_Blog_Post->post_date?></small>
<a href="<?=$Last_Blog_Post->guid?>">
<?=substr($Last_Blog_Post->post_content,'0','150');?>
</a></p>
</div>