Clarus Dignus
Forum Replies Created
-
Just encountered this; not sure if you’re aware of it:
html {
scroll-behavior: smooth;
}Smooth scroll can be implemented via CSS.
Example:
https://www.w3schools.com/howto/howto_css_smooth_scroll.asp
Browser support:
Forum: Requests and Feedback
In reply to: Subpages for Page List BlockThanks. I’ve raised the following issue:
Your approach makes sense. Thanks for explaining it.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Remove breadcrumb link titleOh, I didn’t notice Post Types > Page.
Will update all breadcrumb templates. Thanks.
Forum: Fixing WordPress
In reply to: set time to autoupdateYou’re welcome. 🙂
Please mark as resolved.
Forum: Fixing WordPress
In reply to: set time to autoupdateTry adding this to your wp-config.php file:
// Stop auto-updating in the middle of the day; update between 2:00 AM to 6:00 AM instead. $updates_suspended = (date('Hi') < 0200 || date('Hi') > 0600); define( 'AUTOMATIC_UPDATER_DISABLED', $updates_suspended );Schedule WordPress Auto-Updates to only run during business hours
Alternatively, try the WP Auto Updater plugin.
Forum: Fixing WordPress
In reply to: Webpage looks different in different browsersPlease specifically provide an example of a page and the words that are bold in Chrome but not in Firefox. I can see bold text in pages other than your home page using Firefox on desktop.
Forum: Fixing WordPress
In reply to: WordPress errorsI see another error under “BEFORE & AFTER Microneedling RF”:
/home/l/lifeta/wordpress_4/public_html/wp-content/plugins/dalia-core/shortcodes/clients-carousel/clients-carousel-item.phpThis error indicates there’s a problem with your Dalia theme’s client carousel shortcode.
Notice: Undefined index: image_id in /home/l/lifeta/wordpress_4/public_html/wp-content/plugins/dalia-core/shortcodes/image-with-text/templates/image-with-text.php on line 43This error indicates there’s a problem with your Dalia theme’s image with text shortcode.
Notice: Undefined index: description in /home/l/lifeta/wordpress_4/public_html/wp-content/plugins/js_composer/include/autoload/class-vc-settings-presets.php on line 395I don’t see this error but it relates to a plugin called “JS Composer”. I could be wrong, but I think “JS Composer” is the WP Bakery plugin.
All of these errors seem to relate to your Dalia theme’s shortcodes and page builder.
Dalia is a commercial theme so you’ll need to contact the theme author for support.
Forum: Fixing WordPress
In reply to: Author box is not displayedBy default, the edit_others_posts permission is only given to Super Admins, Administrators and Editors.
– Who has the edit_others_posts permission?Is the author dropdown missing for all user roles, i.e., contributor, author, editor, and administrator?
Are you using a custom post type?
Are you using a custom role and/or any plugins that manage user roles?
Try creating a new user for testing purposes. Assign this user the role of editor. Check if this results in the author dropdown reappearing.
Try installing the User Role Editor plugin and check if the edit_others_posts permission is enabled for whatever role(s) you’re encountering the problem with.
A plugin or theme might be the problem. Try disabling your plugins one by one. Try using Twenty Twenty-Two theme.
Forum: Fixing WordPress
In reply to: Word processor style editor?The block editor is limited when I want to list excerpts from posts with a certain catagory for example.
Use the Query Loop block. Add the block, click “Start blank”, and choose “Title & Excerpt”. In the block settings sidebar menu to the right, scroll down to “Filters” and specify the category you want to limit the list to in the “Category” text box.
Editing text content is limited (unless I drill down, which is why I want a Word ribbon menu).
What text editing tools do you find yourself having to “drill down” for?
Forum: Fixing WordPress
In reply to: Subscription pluginThe WooCommerce plugin is a good starting point. It can be extended to achieve the functionality you require.
5 Must Have WooCommerce Subscriptions Plugins for 2022
If any aspect of the lessons is done online, the Learn Dash plugin might be worth looking into. It integrates with WooCommerce.
Forum: Fixing WordPress
In reply to: Theme and FTP!!The themes in /wp-content/themes/ should match the themes in wp-admin > Appearance > Theme. If not, ask your host why not.
Resetting/deleting your site’s files and database, and reinstalling WordPress seems hasty but there’s a chance it could resolve your problem.
Plugins like WP Reset will reset your database and can delete particular folders like themes, plugins, uploads, etc.
Alternatively, you can manually delete all WordPress files and your entire WordPress database.
Delete a Self-Hosted WordPress Site via cPanel
Delete a Self-Hosted WordPress Site Manually
Optional Extra: Database Removal
Back-up your files and database before proceeding.
Regarding the email addresses you’re using for WordPress.com, ww.wp.xz.cn, and your site’s administrator account, you can change the email addresses used for each via your account/profile settings.
Forum: Fixing WordPress
In reply to: Theme and FTP!!When you say “FTP in my C panel”, do you mean cPanel’s file manager or are you using an FTP client like FileZilla?
Forum: Fixing WordPress
In reply to: how to make this type of menuAre you referring to the mobile menu that appears when the navicon (three lines icon) is clicked?
If so, if you’re using a block theme, in the full site editor, select your navigation block. In the block settings sidebar to the right, go “OVERLAY MENU” and select “Always”.
If you’re not familiar with block themes, use the Twenty Twenty-Two theme or generate a starter block theme.
Forum: Fixing WordPress
In reply to: WidgetsRe-enable the old widget editor by disabling the new widget editor, delete the existing widgets, and re-enable the new widget editor.
Add this code to your theme’s functions.php file to disable the old widget editor:
// Disables the block editor from managing widgets in the Gutenberg plugin. add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' ); // Disables the block editor from managing widgets. add_filter( 'use_widgets_block_editor', '__return_false' );There was an error. Cannot read properties of undefined (reading ‘map’)
Alternatively, use the Classic Widgets plugin to re-enable the old widget editor.