Forum Replies Created

Viewing 15 replies - 1 through 15 (of 36 total)
  • Plugin Support Sumit Singh

    (@sumitsingh)

    Hi @jack2020

    If you’re trying to remove the WordPress logo from the login page and using a snippets modules in this plugin , your current code may not work due to the use of smart quotes or because it doesn’t actually perform any removal.

    Try using this snippet instead — it works well when added via a snippets modules in WPE plugin

    function custom_login_logo_removal() {
    // Remove link and tooltip from the logo
    add_filter('login_headerurl', '__return_empty_string');
    add_filter('login_headertext', '__return_empty_string');

    // Visually hide the logo via CSS
    echo '<style>.login h1, .login h1 a { display: none !important; }</style>';
    }
    add_action('login_enqueue_scripts', 'custom_login_logo_removal');

    try this one then let me know please.

    Plugin Support Sumit Singh

    (@sumitsingh)

    Hello there,

    It seems the issue is caused by a snippet that might have an error in the code. To fix this without affecting your website, please follow these steps:

    1. Access your WordPress admin panel using the following URL:
    2. wp-admin/admin.php?page=wp-extended-snippets&wpext_safe_mode=1

    This URL will open the Snippets page in Safe Mode, where all snippets will be temporarily disabled.

    1. Once you’re in Safe Mode, review your snippets and deactivate or fix the one causing the issue.
    2. After resolving the snippet, disable Safe Mode by visiting the same URL without the wpext_safe_mode parameter.

    Looking forward hearing from you,

    Kind regards,

    Hey @phoe999,

    If you prefer a plugin solution, you might consider. Popup Maker: A flexible and powerful WordPress plugin to create any type of popup.

    https://ww.wp.xz.cn/plugins/popup-maker/

    Sumit Singh

    (@sumitsingh)

    Hey @pfunk ,

    Here are the plugin names for creating and inserting charts tables via shortcodes in WordPress:

    1. TablePresshttps://ww.wp.xz.cn/plugins/tablepress/
    2. Visualizer: Tables and Charts Manager for WordPresshttps://ww.wp.xz.cn/plugins/visualizer/
    3. WP Table Builderhttps://ww.wp.xz.cn/plugins/wp-table-builder/
    4. wpDataTableshttps://ww.wp.xz.cn/plugins/wpdatatables/
    Sumit Singh

    (@sumitsingh)

    Hey @stefanocps ,

    I think below plugin easy to add code in header, footer and body . So you can try any one plugin.
    https://ww.wp.xz.cn/plugins/insert-headers-and-footers/
    https://ww.wp.xz.cn/plugins/wp-headers-and-footers/

    Sumit Singh

    (@sumitsingh)

    Hey @lbrandholt ,

    here another option to update admin email. login with admin then open this link “site.com/wp-admin/options.php” (change site.com to your site URL please ) and find admin_email then click on Save Changes button available end of page.

    Sumit Singh

    (@sumitsingh)

    Hey @andytwonames ,

    you have 2 option to upload theme.

    1. Increase upload_max_filesize on your server.
    2. Upload theme file from Cpanel or FTP directly then activate form WP admin side.
    Sumit Singh

    (@sumitsingh)

    Hey @ntxice ,

    Good new about recatcha its working now. but just sharing with you below google article for your future to fixlike this issue.
    https://groups.google.com/g/recaptcha/c/WN9qYm7h1AQ

    Sumit Singh

    (@sumitsingh)

    Hey @theskindietitian ,

    Once login from my Bluehost account then you can see right side “Howdy, User name” in the WordPress dashboard. So hover there you can see the user name above Edit Profile.

    Plugin Author Sumit Singh

    (@sumitsingh)

    Hey,

    let me test above things and inform you.

    Thank you

    Plugin Author Sumit Singh

    (@sumitsingh)

    Hey kekriszta,

    I have checked your website and looking fine now. Sorry for late response.

    Thank you

    awesome 👍👏

    Dear @thebootstrapthemes ,

    Currently, ww.wp.xz.cn requires users to have an account and be logged in to leave a review for themes or plugins. This is to ensure the authenticity of reviews and prevent abuse. Unfortunately, there is no option to write a review without registration on ww.wp.xz.cn.

    As for synchronizing ww.wp.xz.cn accounts with your internal customer accounts, ww.wp.xz.cn does not provide a built-in feature for such synchronization. The user accounts on ww.wp.xz.cn are separate from any external systems or platforms.

    However, you can encourage your users to leave reviews by providing clear instructions and links to your theme’s review page on ww.wp.xz.cn. You can also prompt them to create an account or log in if they haven’t already done so.

    Additionally, you may consider implementing your own review system on your website, where users can provide feedback and ratings directly. This would allow you to gather user reviews within your internal customer account system. However, it would be separate from the reviews on ww.wp.xz.cn.

    Remember to follow ww.wp.xz.cn guidelines and policies when requesting or encouraging reviews from users.

    Best of luck with your WordPress theme development and gathering user feedback!

    Hi @gh0stclaw

    Yes, it is possible to extend the LinkControl component in Gutenberg or remove specific attributes from anchor tags in your case. Here are two approaches you can consider:

    1. Extending the LinkControl Component: To extend the LinkControl component, you can create a custom plugin or add the code to your theme’s functions.php file. Here’s an example of how you can remove the data-id attribute from the anchor tags: javascript Copy code(function(wp) { var LinkControl = wp.editor.LinkControl; var el = wp.element.createElement; var __assign = wp.blocks.__assign; // Create a new extended LinkControl component var CustomLinkControl = function(props) { // Remove the data-id attribute from the link attributes var attributes = __assign({}, props.attributes); if (attributes && attributes.href) { delete attributes['data-id']; } // Render the LinkControl component with modified attributes return el(LinkControl, __assign({}, props, { attributes: attributes })); }; // Replace the original LinkControl component with the custom one wp.hooks.addFilter('editor.LinkControl', 'my-plugin/extend-link-control', function() { return CustomLinkControl; }); })(window.wp); After adding this code, the LinkControl component will be extended, and the data-id an attribute will be removed from the anchor tags.
    2. Removing Attributes from Anchor Tags: If you want to remove specific attributes from anchor tags globally, you can use a filter hook called wp_targeted_link_rel in your theme’s functions.php file. Here’s an example of how you can remove the data-id attribute from all anchor tags: PHP Copy code function remove_link_attributes($rel_attributes) { $rel_attributes = str_replace('data-id', '', $rel_attributes); return $rel_attributes; } add_filter('wp_targeted_link_rel', 'remove_link_attributes'); By adding this code to your theme’s functions.php file, the data-id attribute will be removed from all anchor tags throughout your website.

    Remember to use a child theme or custom plugin to make these modifications to avoid losing your changes during theme or plugin updates.

    Hi @whitsey ,


    If you’re facing issues with the Vimeo embed block not allowing a width of 100% and there are no built-in settings to override it, there are a couple of potential solutions you can try:

    1. Use custom CSS: If your website or platform allows you to add custom CSS, you can override the width of the Vimeo embed block using CSS. Here’s an example of how you can achieve this:cssCopy code.vimeo-embed { width: 100% !important; } In this example, we’re targeting the class .vimeo-embed and setting the width to 100% using the !important rule to override any conflicting styles. Apply this CSS to your website, and it should force the Vimeo video block to be 100% width.
    2. Embed using iframe: Instead of using the Vimeo embed block, you can try embedding the Vimeo video using an iframe. Vimeo provides an embed code that you can customize and insert into your HTML. Here’s an example:htmlCopy code<iframe src="https://player.vimeo.com/video/VIDEO_ID" width="100%" height="HEIGHT" frameborder="0" allowfullscreen></iframe> Replace VIDEO_ID with the actual ID of your Vimeo video, and specify the desired HEIGHT for the video. Setting the width attribute to 100% should make the video occupy the full width of its container.Note: Be sure to adjust the HEIGHT attribute according to your requirements. If you want the video to scale proportionally, you can omit the height attribute altogether, and the video will adjust its height automatically.

    Try implementing one of these solutions based on the specific requirements you’re using to embed the Vimeo video.

Viewing 15 replies - 1 through 15 (of 36 total)