Okay
  Public Ticket #3821309
Contents / Author Badge
Open

Comments

  • alexwb started the conversation

    1. Table of Contents font settings

    Upon changing the font size in settings byuK8S.jpg

    The new font size does not reflect to all table of contents items, but rather to the first hierarchy. ( 1, 2 , 3 but not subitems, 1.1, 2.1..etc)

    vy9CbH.jpg

    Targeting this with css fixes it but I think it classify as a bug, it does not work either to change the font settings of H5 overall.

    2. Author verified badge

    The verified badge appears on archive but not on single post.

    How can we enable it on single post? Still with custom css / code?

    1038726412.png
    3430208332.png

    3. Bullet points

    Can these be changed to square not round? 

    Key points, across the content, etc..

    Thanks!

  •  247
    Theme Ruby replied

    Hi,

    Thank you for reaching out to us.

    • TOC Font Options: We appreciate you bringing this to our attention. The issue is due to a missing class name (table-link) in the sections you mentioned. We will forward this to our development team for review and include a fix in the next update. In the meantime, would you be able to provide us with login access via a private support ticket? We can apply a temporary fix for you.

    • Author Verified Badge: Currently, the verified badge is not supported within the meta info section. However, you can add the following custom CSS to enable it:

      .single-post .meta-inner .meta-el:has(.meta-author) {
        position: relative;
        padding-right: 6px;
      }
      .single-post .meta-inner .meta-el:has(.meta-author)::before {
        content: '\e983';
        font-family: 'ruby-icon' !important;
        font-weight: normal;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        color: var(--verified-color, #4caf50);
        position: absolute;
        right: 0;
        top: -2px;
      }
      
    • List Block Styles: You can use the List Style – Ruby block, which offers various icon styles for customization. Please refer to the documentation below for more details:
      Foxiz – How to Use Gutenberg Blocks

    Let us know if you need any further assistance.

    Best regards,

  • alexwb replied

    1. Toc I manage to make it vor via targeting css.

    2. Verified badge does not work, I try to target the css myself but still would show weird. check here:  https://crypto.st/learn/best-hardware-wallets/ 

    3. I am looking for default style for all <li> to be square, not to manually set them, it's hard to enforce consistency between multiple authors.

    NEW* 4. How can I move the Key Points above the main photo? 


  •  247
    Theme Ruby replied

    Hi,

    Thank you for your message.

    For the verified badge and list style issues, please add the following CSS to your site:

    .single-post .meta-inner .meta-separate {
      position: relative;
      padding-right: 17px;
    }
    .single-post .meta-inner .meta-separate::before {
      content: '\e983';
      font-family: 'ruby-icon' !important;
      font-weight: normal;
      font-style: normal;
      font-variant: normal;
      text-transform: none;
      color: var(--verified-color, #4caf50);
      position: absolute;
      right: 0;
      top: -2px;
    }
    .rbct ul, .comment-content ul, .elementor-widget-text-editor ul, .rb-text ul { 
      list-style: square inside;
    }
    

    Regarding the "Key Points" section, could you please clarify your request and provide a screenshot? This will help us better understand how you would like it positioned.

    Looking forward to your response.

    Best regards,

  • alexwb replied

    Thank you, the css works just fine!.

    In regards to the Key points, I am looking to move them right below the Entry Meta( author date etc)

    fupr8v.jpg

    Key points to be moved above the Image, right below the Entry Meta

  •  247
    Theme Ruby replied

    Hi,

    Thank you for your update and suggestion.

    Regarding the Key Points section, the theme does not currently have an option to move this section as you mentioned. However, we truly appreciate your feedback, and we will pass your suggestion along to our development team to assess its feasibility for future updates.

    Please feel free to reach out if you have any further questions. We’re happy to help!

    Best regards,

  • alexwb replied

    Hi !

    I am looking to do it myself in child theme, I am assuming this can be done by moving the piece of code responsable for Key points (highlights) above the featured image?

    Can you please assist? 

    Looking for a while in /templates/ but unable to find the code to move it up.

    Thank you!

  •  247
    Theme Ruby replied

    Hi,

    Thank you for reaching out.

    You can modify the custom code in the templates.php file located at:
    foxiz/templates/single/templates.php

    Inside this file, look for the function foxiz_single_content. Within this function, you will find foxiz_single_highlights();, which is responsible for rendering the Highlights feature. You can remove this function and move it to your desired location.

    Additionally, the function responsible for displaying meta info is foxiz_single_header_meta. You can insert it within the same file as needed.

    Please ensure that you implement these changes via a child theme to prevent losing modifications during updates.

    Hope this helps! Let us know if you have any further questions.

    Best regards,

  • alexwb replied

    Hi,

    Did my best with some AI tool this is what I got.

    rpu2qH.jpg


    Can you assist in providing a clean templates.php file that does not duplicate? and keeps the key points above the image, below the subtitle?

  •  247
    Theme Ruby replied

    Hi,

    Regarding the AI feature, please refer to the attached/documented materials for more details.

    For the Highlights section:
    Inside the templates.php file, please locate the function foxiz_single_content. Within this function, you will find foxiz_single_highlights();, which is responsible for displaying the Highlights feature. If you remove this function, the duplication issue will be resolved.

    Feel free to contact us if you have any questions.

    Best regards,