Forum Replies Created

Viewing 15 replies - 256 through 270 (of 18,918 total)
  • Moderator threadi

    (@threadi)

    I’d recommend ruling out your custom CSS as the cause first. Just try pasting this into it:

    * { background-color: red }

    Can you save that? If so, I’d guess that the CSS you wrote either has a formatting issue, contains invalid characters (which would be odd), or is extremely long (which would also be odd).

    Feel free to provide your complete CSS, e.g., via a code block or in Gists, if it works as described above.

    As an alternative to pasting the CSS there, you can also place it in a style.css file in your child theme. You won’t have any trouble saving it there. However, you may need to create a child theme first: https://developer.ww.wp.xz.cn/themes/advanced-topics/child-themes/

    Moderator threadi

    (@threadi)

    What format are the images in? PNG, JPG, WebP?

    What image generation components does your hosting provider use? If something is missing here, it should be visible under Tools > Site Health.

    Are you running the latest version of WordPress? It should be 6.9.4.

    Do you perhaps have the original image on hand somewhere? You could upload it to your server via FTP and post its public URL here.

    Moderator threadi

    (@threadi)

    I would recommend the following steps:

    • Go to Settings > Permalinks and save the settings again without making any changes. This will reset WordPress’s internal URL cache.
    • As a test, deactivate all plugins. This will rule them out as the cause.
    • If it still doesn’t work properly, switch the theme to a default theme like TwentyTwentyFive. At that point – with no plugins and a default theme – there should be no issues.
    • Also check under Tools > Site Health to see if there are any messages there.
    Moderator threadi

    (@threadi)

    If you would like to request deletion of your account and associated data, please follow these steps:

    1. Visit https://ww.wp.xz.cn/about/privacy/data-erasure-request/.
    2. Enter your email address.
    3. Click “Accept Declaration and Request Permanent Account Deletion”.

    Note: If you have a WP.org account, it’s recommended you log in before submitting to associate your account with the request.

    Also note that the account here has nothing to do with logging in anywhere other than here (and associated wp.org sites) and is not connected to your own web site(s) in any way.

    Moderator threadi

    (@threadi)

    Am I understanding this correctly that in your case, one of the two shortcodes isn’t displaying anything at all? It might be helpful if you could provide a specific example, like the one I demonstrated above. Which shortcodes are you using. What do they look like in the Block Editor, and how do they appear on the front end.

    Moderator threadi

    (@threadi)

    I can’t reproduce the issue you described. Here’s what I did to test it:

    A completely new WordPress installation (version 6.9.4).

    The default TwentyTwentyFive theme.

    Two custom shortcodes:

    add_shortcode( 'example1', function( $atts ) {
    return 'example1out';
    } );

    add_shortcode( 'example2', function( $atts ) {
    return 'example2out';
    } );

    I inserted this shortcode block into a page:

    <!-- wp:shortcode -->
    [example1]
    [example2]
    <!-- /wp:shortcode -->

    This is how it appears on the front end:

    <div class="entry-content alignfull wp-block-post-content has-global-padding is-layout-constrained wp-block-post-content-is-layout-constrained"><p>example1out<br />
    example2out</p>
    </div>

    In which environment and with which theme did you encounter this issue?

    Moderator threadi

    (@threadi)

    Since Avada is a commercial theme, we can’t give you any more specific information here in the forum. I would recommend checking whether there are any pending updates for the theme (and its plugins) and installing them. Otherwise, you should contact their support team: https://avada.com/help-center/

    Moderator threadi

    (@threadi)

    Here’s my take on it: classic themes that use classic widgets will be around for a very long time. After all, a huge number of websites rely on these themes. Removing this feature from WordPress simply isn’t practical, given the sheer number of projects that depend on it. In my opinion, you can definitely continue to use this plugin – which enables the classic widget functionality built into WordPress – for quite some time to come.

    Moderator threadi

    (@threadi)

    do categories carry over?

    Yes, as described in the tutorial.

    Will they overwrite existing ones (if the same name)?

    Based on my experience with the importer, yes. To be more precise: records with the same slug or ID that already exist will be updated with the new data.

    Will scheduled posts remain scheduled or will they have to be rescheduled?

    Scheduling is based on the post status. In my experience, it is carried over exactly as is.

    Can you only import/export pages and posts or can you import/export media?

    The importer includes an option to download attachments as well. You’ll need to enable this option if you want to do so: https://developer.ww.wp.xz.cn/advanced-administration/wordpress/import/#wordpress

    If you’re unsure about the process, I’d recommend testing it first in a project copy, such as a staging environment. If something doesn’t work the way you want, you can either check if the importer’s behavior can be customized using a hook (see the plugin page for details) or use one of the many other plugins available for this purpose: https://ww.wp.xz.cn/plugins/tags/importer/

    Moderator threadi

    (@threadi)

    I’m not entirely sure what you used to build your website. Do you use Elementor to design your website? And if so, how do you design the header and footer of your website? With Elementor or another plugin? Or not at all?

    Moderator threadi

    (@threadi)

    If you’re referring to the export/import tool included in WordPress, see: https://learn.ww.wp.xz.cn/tutorial/tools-import-and-export/

    Moderator threadi

    (@threadi)

    Additionally, I would guess that the problem is more likely caused by your hosting provider. Something there (perhaps a firewall) is blocking the connection to the SMTP server. It’s unusual, but you have to expect anything. My recommendation would therefore be to contact your hosting provider about the issue. They’ll likely be able to resolve it for you without any additional costs for extra plugins.

    Moderator threadi

    (@threadi)

    The issue is caused by the styles included with the “All in One Login” plugin. These styles turn the page into a flexbox, causing the two sections to appear side by side.

    The plugin was updated just yesterday, and it looks like you’ve installed that update as well. This might be related to it.

    Deactivate the plugin and contact their support forum if you have any questions: https://ww.wp.xz.cn/support/plugin/change-wp-admin-login/

    Moderator threadi

    (@threadi)

    You also need to upload the banner in the smaller size. So not just as banner-1544x500.png, but also as banner-772x250.png. See: https://developer.ww.wp.xz.cn/plugins/wordpress-org/plugin-assets/

    Moderator threadi

    (@threadi)

    As mentioned above, you’ll need to use Blocks Everywhere for this. It doesn’t just simulate Gutenberg – it is Gutenberg. Someone on their support forum will be able to tell you how to integrate it, unless it’s already documented somewhere on their GitHub-repo.

    If you want to stick with your current approach using a Secure Custom Field, I would recommend asking their support forum how to handle such input in PHP: https://ww.wp.xz.cn/support/plugin/secure-custom-fields/ – I suspect some sanitize functions might be a possible solution here as well. However, since I’m not very familiar with the field you’re using or the plugin, I can’t say anything more specific about it.

Viewing 15 replies - 256 through 270 (of 18,918 total)