Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'Page'

Home / Forums / Search / Search Results for 'Page'

Viewing 20 results - 601 through 620 (of 53,646 total)
  • Author
    Search Results
  • #292836

    Hi,

    I’m glad you reached out.

    While there is not a setting for this particular functionality, we can likely provide some CSS to accomplish what you want. Can you please link your site and specifically a page where this issue is happening so that we can test some CSS to provide in order to make sure it’s working on your setup?

    Thanks

    #292811

    Hi Chito,

    Thanks for the reply. Unfortunately, these CSS codes all seem to only apply to the current page number and not to the adjacent page numbers.

    #292810

    Hi Mantas,

    You are welcome! 🙂

    If ever you need help again, feel free to open a support ticket on either of these support pages:
    https://www.kadencewp.com/premium-support-tickets/
    https://www.kadencewp.com/free-support-tickets/

    Best regards,
    Chito

    #292809

    Hi Christine,

    Happy to hear everything’s okay now. 🙂

    If ever you need help again, feel free to open a support ticket on either of these support pages:
    https://www.kadencewp.com/premium-support-tickets/
    https://www.kadencewp.com/free-support-tickets/

    Best regards,
    Chito

    In forum: Virtue Theme

    In reply to: Linking Header to Tab

    #292805

    Hi Yogi,

    Happy to help!

    There is no built-in option to add a link to the tab title to go to your anchor text.

    As a workaround, you can use this JavaScript to automatically redirect to the anchor text when the page loads. Add this script to your footer:

    document.addEventListener("DOMContentLoaded", function() {
        if (window.location.pathname === "/test/") {
            window.location.href = window.location.href + "#president";
        }
    });
    

    In the script, change test to your page slug and president to your HTML Anchor.

    Here is a guide on how to add the script to your footer:
    https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-add-scripts-in-header-footer

    Here is a demo screencast for your reference:
    https://share.zight.com/X6uGE5LG

    Please let us know how we can help further.

    Cheers,
    Eze

    #292803

    Hi Kara,

    You can use the wp_login_failed action hook to redirect users to the “Lost Password” page when their login attempt fails:

    function custom_login_failed_redirect() {
        wp_redirect(home_url('/my-account/lost-password'));
        exit;
    }
    add_action('wp_login_failed', 'custom_login_failed_redirect');

    Add the custom code to your child theme funtions.php or using the Code Snippets plugin:
    https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-add-a-custom-filter-or-function-with-code-snippets/

    Watch this demo screencast of what happens when the custom filter code is added to your website:
    https://share.zight.com/2NuQz67x

    Please let us know how we can help further.

    Cheers,
    Eze

    #292795

    Hi Karla –
    Is it possible to redirect users to the WooCommerce password reset page instead?
    For example: https://website.com/my-account/lost-password

    The redirect to the default WP login is confusing users.

    Thanks!

    #292790

    Hi,

    I am trying to link the text “Dr. Anish Andheria” to the “President” tab. This would mean that upon loading, the page would jump directly to the section where “Dr. Anish Andheria” appears on the webpage. I read up online & tried adding anchor links but that did not work. Maybe i am missing something.

    Could you please take a look & guide step by step? Webpage link is:

    Thanks
    Yogi

    #292789

    Hi Christine,

    Thanks for writing in.

    You have set 49 for the Z Index Control for the parent Row Layout that houses all the content, which has a higher z-index value than the header.

    To resolve this:
    1. Go to the page editor
    2. Select the parent Row Layout
    3. Go to Advanced > Structure Setting
    4. Set the Z Index Control value not more higher than 10

    Please let me know how it goes.

    Best,
    Chito

    #292788

    Hi there! I’m also on a search for the best iOS app development agency in the USA. It’s also one thing I’ve been thinking a lot about: How will the agency market and launch the app? However, I’m also hunting for an agency that’ll be able to help with funnel landing pages for those effective app downloads. Has anyone had experience with agencies that can do both development and marketing? I’d love to hear some recs!

    #292787

    Hi there,

    Thanks for writing in.

    While there’s no setting for this, you can use these sample Custom CSS codes:

    /* page numbers font size */
    .archive.category .page-numbers,
    .archive.search .page-numbers,
    .blog .page-numbers{
        font-size: 25px
    }
    /* page numbers initial style */
    .archive.category .page-numbers:hover,
    .archive.search .page-numbers:hover,
    .blog .page-numbers:hover{
        background:red;
        color:white;
        border-color:yellow !important
    }
    /* current page initial style */
    .archive.category .page-numbers.current,
    .archive.search .page-numbers.current,
    .blog .page-numbers.current{
        background:red;
        color:black;
        border-color:yellow
    }
    /* current page hover style */
    .archive.category .page-numbers.current:hover,
    .archive.search .page-numbers.current:hover,
    .blog .page-numbers.current:hover{
        background:blue;
        color:white;
        border-color:yellow
    }

    Change the colors in the code to your preference.

    Alternatively, you can create an element template to replace the archive and search results pages with the Query Loop (Adv) block which has a pagination block you can use.

    Please let me know if you need further assistance.

    Best,
    Chito

    In forum: Kadence Theme
    #292784

    Hi Marcus,

    It looks like you have unboxed style enabled on the page.
     
    There are different things you can change in your theme settings to achieve this.
     
    1 Set the Content Style in the Appearance > Customize > Posts/Pages Layout > Page Layout settings to Unboxed. See Video: https://share.getcloudapp.com/bLull84k
    2 Set the Content Vertical Padding to Disable or Bottom Only on the same settings page. See Video: https://share.getcloudapp.com/YEueej7z
    3 You can also set these settings for individual pages when editing the page under the Page Settings. See Video: https://share.getcloudapp.com/KouKDom0

    Here’s a reference to that feature: https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-setup-page-post-settings

    If that doesn’t work, can you share the link to the website so we can inspect the elements and styles?

    Best regards,
    Teejay.

    #292772

    Hi, I am experiencing the same issue.
    When the plugin is disabled, the pages load correct.

    Running version 3.4.6
    Wordpress version: 6.7.1

    #292763

    For pages like archives and search results, with multiple items shown per page and several pages of items, there are number buttons at the bottom to move to other pages: 1, 2, 3, …, N. I can change the formatting and colours of the “active button” (the one that represents which page I’m currently on) through Customise -> Colours & Fonts -> Buttons, but not the other buttons that link to adjacent or other pages. The font colour of these buttons is hard to see against my site background (which I’m not willing to change), so I’d like to put a solid background on them like the “active” button but I can find no way to customise these other buttons. Any help is appreciated.

    #292759

    Hello, my sticky header isn’t working properly, the content is behind the header.
    Thank you

    #292751

    Hi there,

    I am creating a page on my blog that’s supposed to mirror what my Instagram profile looks like (I don’t want to embed my Insta, I am uploading all my old photos so I can host it myself). When each post is just one photo, the Advanced Gallery block works great. However, when one of the posts is supposed to be a carousel of multiple photos, the little dots underneath are creating extra space which makes the whole grid look uneven. I know I can click “none” to remove the dots entirely, but then people can’t really tell that one of the posts is a carousel. The arrows on the right and left are too faint and unnoticeable.

    Is there some way to have the two dots be on top of the photos instead of underneath? Or if I just remove the dots entirely, is there some other way to make it more obvious that it’s a carousel and not just one photo? Like on Instagram how they usually put the white layered squares symbol in the upper righthand corner.

    I’ve attached two screenshots, one shows how I want the grid to look – the margins/padding is all even. The other shows how uneven it looks when the dots are there, and how the arrows are barely even visible (I did try white on dark, dark on light, outline, etc – the arrows are not ever much more visible than what you can see in the screenshot).

    Thanks,
    Claire

    #292750

    Is there a way to have the Page Layout for Desktop (Settings → Posts/Pages Layout → Page Layout) set to Unboxed while simultaneously having Tablet/Mobile set to Boxed?

    Alternatively, is there a way to eliminate the gap between the page itself and the header that appears on Tablet/Mobile when Unboxed is set for page layout?

    #292744

    Hi,

    I love the gallery that is on home page, below “Next level site creation with AI” that is moving slightly to the right when scrolling down. I’d love to recreate something similar. I can’t figuerout if this is done with Image(adv) block in 5 column layout or Gallery(adv) block? And is that effect added via css?

    #292741

    Hi Austin,
     
    The issue is likely related to WP Rocket, if I test the page without WP Rocket by adding a ?nowprocket parameter in the URL, the page would be loaded correctly.
     
    https://travelingwithscubajay.com/category/scuba-diving/?nowprocket
     
    Here’s a screen recording for reference: https://share.zight.com/mXuNPqqo
     
    For troubleshooting, you can try WP Rocket’s troubleshooting guide here and see if this fixes the issue: https://docs.wp-rocket.me/article/106-my-site-is-broken
     
    Let us know how it works out, and we’re happy to offer further help.

    Best regards,
    Teejay.

    #292736

    Hi there,

    I’m working with my client’s hosting provider to sort out a problem with updating the Virtue Premium theme.

    Here’s his explanation of the issue:

    —————-

    “When we update our theme from Version: 4.10.15 to Version: 4.10.16 we get the following error:

    mod_fcgid: stderr: PHP Warning: Undefined array key “HTTP_REFERER” in /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/themes/virtue_premium/virtue_premium.theme#archive on line 43

    The entire site crashes and is not loadable. When we replace the backup of the Theme it comes back to life. I have made sure the PHP is up to date (8.4 now, it was 8.1) The logs are full of these warnings even before this update but this is the last error when the site wont load.

    Website URL where we can see more details: stjacobsdaycare.ca”

    —————

    Here’s a copy of the site health response:

    ### wp-core ###

    version: 6.7.1
    site_language: en_CA
    user_language: en_CA
    timezone: America/Toronto
    permalink: /%postname%/
    https_status: true
    multisite: false
    user_registration: 0
    blog_public: 1
    default_comment_status: undefined
    environment_type: production
    user_count: 2
    dotorg_communication: true

    ### wp-paths-sizes ###

    wordpress_path: /home/dh_6rr49q/stjacobsdaycare.ca
    wordpress_size: loading…
    uploads_path: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/uploads
    uploads_size: loading…
    themes_path: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/themes
    themes_size: loading…
    plugins_path: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/plugins
    plugins_size: loading…
    fonts_path: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/uploads/fonts
    fonts_size: loading…
    database_size: loading…
    total_size: loading…

    ### wp-active-theme ###

    name: Virtue – Premium (virtue_premium)
    version: 4.10.15 (latest version: 4.10.16)
    author: Kadence WP
    author_website:
    parent_theme: none
    theme_features: core-block-patterns, widgets-block-editor, menus, title-tag, post-thumbnails, automatic-feed-links, editor-style, editor-color-palette, align-wide, responsive-embeds, woocommerce, widgets
    theme_path: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/themes/virtue_premium
    auto_update: Disabled

    ### wp-themes-inactive (2) ###

    Twenty Twenty-Five: version: 1.0, author: the WordPress team, Auto-updates disabled
    Virtue – Premium Child: version: 1.0.0, author: Kadence Themes, Auto-updates disabled

    ### wp-plugins-active (10) ###

    Advanced Editor Tools: version: 5.9.2, author: Automattic, Auto-updates disabled
    Disable Comments: version: 2.4.6, author: WPDeveloper, Auto-updates disabled
    Head, Footer and Post Injections: version: 3.3.0, author: Stefano Lissa, Auto-updates disabled
    Kadence Blocks – PRO Extension: version: 2.6.0, author: Kadence WP (latest version: 2.6.1), Auto-updates disabled
    Kadence Blocks – Gutenberg Blocks for Page Builder Features: version: 3.4.3, author: Kadence WP (latest version: 3.4.6), Auto-updates disabled
    Kadence Slider: version: 2.3.6, author: Kadence WP, Auto-updates disabled
    Sucuri Security – Auditing, Malware Scanner and Hardening: version: 1.9.7, author: Sucuri Inc. (latest version: 1.9.8), Auto-updates disabled
    The SEO Framework: version: 5.1.2, author: The SEO Framework Team, Auto-updates disabled
    Virtue_premium Theme: author: (undefined), version: 6.7.1, Auto-updates disabled
    Yoast Duplicate Post: version: 4.5, author: Enrico Battocchi & Team Yoast, Auto-updates disabled

    ### wp-plugins-inactive (2) ###

    Classic Editor: version: 1.6.7, author: WordPress Contributors, Auto-updates disabled
    GA Google Analytics: version: 20241102, author: Jeff Starr, Auto-updates disabled

    ### wp-media ###

    image_editor: WP_Image_Editor_Imagick
    imagick_module_version: 1691
    imagemagick_version: ImageMagick 6.9.11-60 Q16 x86_64 2021-01-25
    imagick_version: 3.7.0
    file_uploads: 1
    post_max_size: 512M
    upload_max_filesize: 512M
    max_effective_size: 512 MB
    max_file_uploads: 20
    imagick_limits:
    imagick::RESOURCETYPE_AREA: 1,007 GB
    imagick::RESOURCETYPE_DISK: 9.2233720368548E+18
    imagick::RESOURCETYPE_FILE: 6144
    imagick::RESOURCETYPE_MAP: 1,007 GB
    imagick::RESOURCETYPE_MEMORY: 504 GB
    imagick::RESOURCETYPE_THREAD: 1
    imagick::RESOURCETYPE_TIME: 9.2233720368548E+18
    imagemagick_file_formats: 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVIF, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HEIC, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV
    gd_version: bundled (2.1.0 compatible)
    gd_formats: GIF, JPEG, PNG, WebP, BMP, AVIF, XPM
    ghostscript_version: 9.55.0

    ### wp-server ###

    server_architecture: Linux 5.15.0-97-generic x86_64
    httpd_software: Apache
    php_version: 8.2.26 64bit
    php_sapi: cgi-fcgi
    max_input_variables: 3000
    time_limit: -1
    memory_limit: 256M
    max_input_time: -1
    upload_max_filesize: 512M
    php_post_max_size: 512M
    curl_version: 7.81.0 OpenSSL/3.0.2
    suhosin: false
    imagick_availability: true
    pretty_permalinks: true
    htaccess_extra_rules: false
    current: 2025-01-23T19:19:03+00:00
    utc-time: Thursday, 23-Jan-25 19:19:03 UTC
    server-time: 2025-01-23T14:19:01-05:00

    ### wp-database ###

    extension: mysqli
    server_version: 8.0.28-0ubuntu0.20.04.3
    client_version: mysqlnd 8.2.26
    max_allowed_packet: 33554432
    max_connections: 3000

    ### wp-constants ###

    WP_HOME: undefined
    WP_SITEURL: undefined
    WP_CONTENT_DIR: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content
    WP_PLUGIN_DIR: /home/dh_6rr49q/stjacobsdaycare.ca/wp-content/plugins
    WP_MEMORY_LIMIT: 40M
    WP_MAX_MEMORY_LIMIT: 256M
    WP_DEBUG: false
    WP_DEBUG_DISPLAY: true
    WP_DEBUG_LOG: false
    SCRIPT_DEBUG: false
    WP_CACHE: false
    CONCATENATE_SCRIPTS: undefined
    COMPRESS_SCRIPTS: undefined
    COMPRESS_CSS: undefined
    WP_ENVIRONMENT_TYPE: undefined
    WP_DEVELOPMENT_MODE: undefined
    DB_CHARSET: utf8mb4
    DB_COLLATE: undefined

    ### wp-filesystem ###

    wordpress: writable
    wp-content: writable
    uploads: writable
    plugins: writable
    themes: writable
    fonts: not writable

    ### kadence-blocks ###

    version: 3.4.3
    last_updated: 1735666003
    previous_version: 3.3.7
    pro_active: Yes
    deactivated_blocks: None
    block_defaults: No
    block_visibility: No
    custom_colors: No
    recaptcha_key: No
    maps_key: No
    mailerlite_key: No
    cloud_connect: No

    ——————-

    Any help resolving this is greatly appreciated.

    Cheers!

    S.

Viewing 20 results - 601 through 620 (of 53,646 total)