ZeeTheme
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the ‘Read the post’ text in the templateHello @norbertmarko,
Sorry for the late reply.
Here is the solution.I have uploaded a new version of the theme with the fix. So first, you need to update the WhiteDot theme to latest version.
And then, To change the Read The Post text, add this code snippet to the theme.
add_filter( 'read_the_post_text', 'custom_read_the_post_text' ); function custom_read_the_post_text() { return 'Your Custom Text Here';//Remove Your Custom Text Here and add your own text. }
Remember to remove Your Custom Text Here and add your own text.
Now, to edit the “posted on” “by” and “category” text, add this three code snippets.
//Posted on Text add_filter( 'whitedot_posted_on_text', 'custom_posted_on_text' ); function custom_posted_on_text() { return 'Your new value'; } //By Text add_filter( 'whitedot_author_by_text', 'custom_author_by_text' ); function custom_author_by_text() { return 'Your new value'; } //Category Text add_filter( 'whitedot_meta_category_text', 'custom_meta_category_text' ); function custom_meta_category_text() { return 'Your new value'; }
Remove the Your new value and add your own Text in each of the three code snippet.
Let me know if your problem is solved. Thank you for using WhiteDot.
Forum: Themes and Templates
In reply to: [WhiteDot] Posts to certain Pages, not categoriesYou have not replied for a week. Looks like your issue is solved.
I am Marking this topic as resolved.Forum: Themes and Templates
In reply to: [WhiteDot] Redirect Logo to custom pageYou have not replied for 6 days. Looks like your issue is solved.
I am Marking this topic as resolved.Forum: Themes and Templates
In reply to: [WhiteDot] Redirect Logo to custom pageHello guys,
Thanks @addweb-solution-pvt-ltd for contributing to the topic. Your solution is correct.
But it will be better not to hardcode the url to the theme.So here is a better solution.
add_filter( 'get_custom_logo', 'custom_logo_url' ); function custom_logo_url ( $html ) { $custom_logo_id = get_theme_mod( 'custom_logo' ); //Your Custom URL $url = 'www.mysiteurl.com'; //Replace the URL with your own. $html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>', esc_url( $url ), wp_get_attachment_image( $custom_logo_id, 'full', false, array( 'class' => 'custom-logo', ) ) ); return $html; }
You need to replace the url – https://www.mysiteurl.com in line number 5 with your own url and it’s done.
Read this article to know the correct way to add a code snippet to the theme – https://whitedot-docs.zeetheme.com/docs/developers/adding-php/
Let me know if the problem is solved.
Thank you both for using WhiteDot.
- This reply was modified 6 years, 3 months ago by ZeeTheme.
Forum: Themes and Templates
In reply to: [WhiteDot] Posts to certain Pages, not categoriesHello max,
Sorry I kept you waiting for this long.
I have created a special plugin for your need ??Here is the download link – https://drive.google.com/file/d/1DMrqQd6Yo-LmaLCYw9BUdVdrqBpTopTh/view?usp=sharing
How to Use it
Shortcode – [whitedot-posts posts=”12″ category=”travel”]
Here posts attribute is for number of posts per page. Default is 12.
And category attribute is for posts category. You can leave it blank or not write it in the shortcode if you want to show all posts.
Special Page Template
I have also added a special page template for the page in the theme(through the plugin).Using the page template, your custom post pages will look same as the default blog/archive pages. And you can also customize the page same as you customize blog/archive page from customizer. So don’t forget to change the Page template of the page to Custom Blog Page with Shortcode
To change the page template, click on edit page, look for the Page Attributes box on the right side, and click on Template and select – Custom Blog Page with Shortcode.
About the grid layout on the archive page
I have fixed the issue. A new version of the theme is available. Please update your theme and check if the issue is solved.Thank you for using WhiteDot Theme. And I am very happy that you liked the theme ??
I don’t have a team, I work alone on my theme along with my college studies. And I have worked really hard on this theme. It would be highly appreciable if you could spend a couple of seconds to give a Nice Review to the theme to appreciate my efforts. So I can work hard to provide new features regularly.
Please let me know if your problem is solved.
Forum: Reviews
In reply to: [WhiteDot] Good!Thanks @ricard0geek,
The option to remove the author box will be added in the next update.
And I have released the very first add-on for the Whitedot theme – Whitedot Remove Credits. It gives you full control to customize the footer copyright statement.
I haven’t made any announcements yet. But you can get the plugin here.And I am currently working the second addon – Whitedot Designer
This addon will add unlimited color and layout customization options in the theme. You can customize about everything in the theme. It will be released next week.If you have any feature Ideas, you can join the facebook group for discussion.
Forum: Reviews
In reply to: [WhiteDot] Great themeThank you @m33m.
More features are coming in next update. ??
Forum: Themes and Templates
In reply to: [WhiteDot] Removing the hyphen from the TitleIf you are talking about the title separator, here is the solution.
To change the separator in all pages. add this PHP snippet –
add_filter( 'document_title_separator', 'whitedot_title_separator' ); function whitedot_title_separator( $sep ) { $sep = "|"; return $sep; }
To change the separator in only on your homepage(static). add this PHP snippet –
add_filter( 'document_title_separator', 'whitedot_home_title_separator' ); function whitedot_home_title_separator( $sep ) { if ( is_front_page() ) { $sep = "|"; } return $sep; }
To change the separator in only the blog home page. add this PHP snippet –
add_filter( 'document_title_separator', 'whitedot_blog_title_separator' ); function whitedot_blog_title_separator( $sep ) { if ( is_home() ) { $sep = "|"; } return $sep; }
To change the separator in the default blog page(front blog page), add this PHP snippet –
add_filter( 'document_title_separator', 'whitedot_front_blog_title_separator' ); function whitedot_front_blog_title_separator( $sep ) { if ( is_front_page() && is_home() ) { $sep = "|"; } return $sep; }
If you want to completly remove the separator, just leave the double quote blank like this
$sep = "";
How to add PHP code to WordPress safely – https://whitedot-docs.zeetheme.com/docs/developers/adding-php/
Forum: Themes and Templates
In reply to: [WhiteDot] Removing the hyphen from the TitleHello @designcode360,
Looks like you have changed the theme on your website.
Switch back to the WhiteDot theme, please.
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the size of logoThanks for installing Whitedot Fahim.
As your problem is solved, I am marking this ticket as resolved.
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the size of logoI am really happy that you liked the theme and support.
May I ask you to give a 5-star rating?
This will help us to spread the popularity and to make this theme even better.And let me know if there is anything else I can help you with.
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the size of logoTo change the logo size, add this snippet of CSS code to Appearance > Customize > Additional CSS.
.wd-site-logo .custom-logo { height: 90px; }
As far as I have understood, you want to increase the logo size. So, here the height is set to
90px
which is perfect according to me. (the default height is50px
) But you can change it if you want.<h3> Personal Suggestion </h3>
Because of our header background image, your menu is not visible properly. Add this snippet of code to fix this. But, it’s just a suggestion :)..primary-nav li a { font-size: 16px; } .site-header .col-full { padding: 0; background: #00000087; }
<h3>And about the search bar</h3>
You will have to explain more about what help you need for the search bar.
- This reply was modified 6 years, 7 months ago by ZeeTheme.
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the size of logoWhy don’t we discuss this in the facebook group? It will be easier for me to get notifications for follow up replies.
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the size of logoWhat help do you need with the search bar?
The default height of the logo is 50px. What size do you want?
And the sticky header is a feature which will be added in the theme in future. So you will have to wait for it for some time.
Forum: Themes and Templates
In reply to: [WhiteDot] Changing the size of logoHello @fahimscirex,
Looks like you have changed the theme.
But I understand what you are asking for and I can help you with this.
Right now there are no customization options for this. But I can provide you custom CSS code that you add to your theme to make the changes you need. Please activate the WhiteDot theme and reply me.
You can join the Zeetheme group on Facebook for better support or discussion like this.
And if you are satisfied with this theme, may I ask you to give a 5-star rating? – https://www.ads-software.com/support/theme/whitedot/reviews/#new-post
This will help us to spread the popularity and to make this theme even better.