Moin Uddin Ahmed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: slideshow is’nt coming under the borders above it?Use this CSS & it’ll solve the issue:
header#masthead > .container { z-index: 9999; }
Forum: Fixing WordPress
In reply to: Dont work lazy load wordpress in custom templateTry this code in your functions.php to turn off the SVG data URLs:
function disable_svg_data_uri() { remove_action('template_redirect', 'wp_inline_svg'); } add_action('init', 'disable_svg_data_uri');
Forum: Fixing WordPress
In reply to: Error during creating tableOkay try this and see:
global $wpdb; $table_name = $wpdb->prefix . 'ca_shortcodes'; $charset_collate = $wpdb->get_charset_collate(); if ($wpdb->get_var("SHOW TABLES LIKE '{$table_name}'") !== $table_name) { $sql = "CREATE TABLE {$table_name} ( id int(11) unsigned NOT NULL AUTO_INCREMENT, shortcode VARCHAR(255) NOT NULL, fields longtext NOT NULL, fields_name longtext NOT NULL, app_name VARCHAR(255) NOT NULL, form_id VARCHAR(255) NOT NULL, form_name VARCHAR(255) NOT NULL, entry_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) {$charset_collate};"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta($sql); }
Forum: Fixing WordPress
In reply to: WooCommerce Header SectionUse this CSS to remove the space:
.single-product .entry-header.has-bg { padding: 10px 0; }
Forum: Fixing WordPress
In reply to: Error during creating tableTry this code:
<?php global $wpdb; $table_name = $wpdb->prefix . "ca_shortcodes"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); $charset_collate = $wpdb->get_charset_collate(); $sql = "CREATE TABLE {$table_name} ( id int(11) unsigned NOT NULL AUTO_INCREMENT, shortcode VARCHAR(255) NOT NULL, fields longtext NOT NULL, fields_name longtext NOT NULL, app_name VARCHAR(255) NOT NULL, form_id VARCHAR(255) NOT NULL, form_name VARCHAR(255) NOT NULL, entry_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $charset_collate;"; dbDelta($sql); ?>
Forum: Fixing WordPress
In reply to: How to enqueue style correctlyHi @ferdalkrmn,
you can read about these here (enqueue_style & enqueue_script )Array is used for dependency. If your code depends on some other code/file you call call it in the array. checkout the links i wrote & you’ll see more details.
True/False are used for showing in the footer or not and many other reasons.
Hope this helped. Thank You
Forum: Fixing WordPress
In reply to: white bar at the bottom of pageHi @startlivefit ,
use this code to hide that space in Mobile version:
@media (max-width:480px){ div#footer-widgets { display: none } }
Hope this help. Thanks
Forum: Everything else WordPress
In reply to: Updates has ruined my websiteTry to regenerate CSS from Elementor;
Go to Elementor -> Tools -> Click ( Regenerate Files & Data )
Screenshot:: https://prnt.sc/BA9yTeExifYb
This should help or let me know if you still facing the same issue.
Forum: Fixing WordPress
In reply to: i have a really big problem please helpHi @abderahmensekkal, You should upload your website to a server, try again and if there’s any issue : ask your question including the URL of your website. Thanks
Forum: Developing with WordPress
In reply to: Widget de cumplea?osPuede probar este complemento, pero dejó de actualizarse: (widget de cumplea?os).
La segunda opción es crear un complemento personalizado o una codificación personalizada para esta funcionalidad. Gracias
Forum: Fixing WordPress
In reply to: Images not loading on mobile deviceHi @getstitchedstore, can’t give any suggestion without logging into your website. Sorry ??
Forum: Fixing WordPress
In reply to: Text links are white and only visible in hoverHi @merettekuijt,
In your theme style.css Line number 694. Change:a { color: #fff; text-decoration: none; }
To
a { color: inherit; text-decoration: none; }
See the screenshot: https://prnt.sc/gr8gfSZy_EgS
Hope this helps.Forum: Fixing WordPress
In reply to: Single post view not full width in mobileGreat that my code helped.
Forum: Fixing WordPress
In reply to: Single post view not full width in mobileUse this code for the title:
.elementor-2596 .elementor-element.elementor-element-e0e0644 > .elementor-widget-container { margin: 0px 0px 0px 0px; padding: 0px 20px 0px 20px; }
This will remove the space. Thanks
Forum: Fixing WordPress
In reply to: Single post view not full width in mobileI think your margins looks fine https://prnt.sc/044_mEa4hN93
Explain, what exactly you want?