niyaswp
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How to Find Class Name of Elementor Elements?Hello,
Please check out these articles:-
https://elementor.com/help/css-classes-in-elementor/
https://elementor.com/help/how-to-add-custom-css/
Hope you find this helpful.
Forum: Fixing WordPress
In reply to: There MUST be a Plugin to do thisHello,
Kindly try this code:-
function change_heading_widget_content( $widget_content, $widget ) { if( 'image-box' === $widget->get_name() ){ $settings = $widget->get_settings(); if( !empty($settings['description_text']) ){ $widget_content .= substr($settings['description_text'], 0, 100) . '<div><a href="#">Read More...</a></div>'; } } return $widget_content; } add_filter( 'elementor/widget/render_content', 'change_heading_widget_content', 10, 2 );
Forum: Fixing WordPress
In reply to: wp_unique_term_slug fired only when adding a termHello,
You can try the following code, maybe it will help you:-
function insert_taxonomy_content( $term_id, $tt_id, $taxonomy ){ // only insert content on certain taxonomies if ( $taxonomy === 'some_custom_taxonomy' ){ // unhook this function so it doesn't loop infinitely remove_action('edited_term', 'insert_taxonomy_content'); $content = "Some Content"; $update_args = array( 'description' => $content, ); // update the post, which calls save_post again wp_update_term( $term_id, $taxonomy, $update_args ); // re-hook this function add_action('edited_term', 'insert_taxonomy_content'); } } add_action('edited_term', 'insert_taxonomy_content', 10, 3);
You need to change the slug, name and description as required!
Forum: Everything else WordPress
In reply to: dropdown menu remove button + –Hi,
Thanks for sharing this. There was a CSS conflict. If you wish, you can use the following custom CSS to fix it:-
#menu-1-66dbe7c li .sub-menu-toggle { display: none; }
Hope this helps!
Hello,
If the permalink setup at the source and destination of the migration is different, it can cause the images to disappear.
Could you please update the permalink settings and check it again from incognito window?
Forum: Everything else WordPress
In reply to: dropdown menu remove button + –Hi,
Could you please share that page URL here so that I can check it further?
Forum: Everything else WordPress
In reply to: Words in first column breaking. Need wider columnHi @eugene,
Sounds good!
Forum: Everything else WordPress
In reply to: Words in first column breaking. Need wider columnHi,
Please use this code:-
.wp-block-table tr td:first-child { width: 25%; }
I hope it works!
Forum: Fixing WordPress
In reply to: WP Forms – can’t edit backgroundSorry for the delay, please use this one:-
body form#wpforms-form-555 .wpforms-submit { background: red !important; }
Forum: Developing with WordPress
In reply to: button imageHi @agolollo09
Please try this code:-
body .wp-block-themeisle-blocks-button a { background-image: url(https://carlinifd.it/wp-content/uploads/2023/07/IMG_4105photo-1-819x1024-2.jpg); background-repeat: no-repeat; background-size: cover; background-color: unset; }
You need to change the image as required.
Forum: Fixing WordPress
In reply to: Post body is blank on mobileHi,
This may be a plugin or theme conflict. Please attempt to disable all plugins, and switch to the default Twenty Twenty theme. If the problem goes away, enable them one by one to identify the source of the problem.
If you can install plugins, install Health Check. On the troubleshooting tab, you can click the button to disable all plugins and change the theme for you, while you’re still logged in, without affecting normal visitors to your site.
Forum: Fixing WordPress
In reply to: Having CLS issue while using elementor toggleHello,
Could you please provide a screenshot to understand which section you’re talking about?
Forum: Fixing WordPress
In reply to: WP Forms – can’t edit backgroundHi @musojo
If you prefer, you can use the following custom CSS to change it:-
body form#wpforms-form-555 input::placeholder, body form#wpforms-form-555 textarea::placeholder{ color: #2eb8b8; background: #d2fbfb !important; } body form#wpforms-form-555 input, body form#wpforms-form-555 textarea{ background: #d2fbfb !important; font-weight: bolder; }
Please change the color code as required, I hope this helps!
Forum: Developing with WordPress
In reply to: Disable Menu Sub-Items Auto ExpandHello @ironware
Thanks for the explanation. Strangely, I can’t see the ‘Chandeliers’ sub menu, could you please check the home page without login?
Kindly see the attached screenshot!
https://imgbly.com/ib/ugurDcrAhl
- This reply was modified 1 year, 5 months ago by niyaswp.
Forum: Fixing WordPress
In reply to: remove “by” on blog postHi @sham3815
Sounds good..