corewpress
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Kale] Home page not responsivePerfect then!
Please, let me know if you need any further assistance.Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Remove shadow overlay from related postsHi @drjs,
Hope you are having a great day and thanks for contacting us!
Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post { filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; }
Please, let me know if you need any further assistance.
Kind regards,
Diego- This reply was modified 7 years ago by corewpress.
Forum: Themes and Templates
In reply to: [Kale] Products not showing on “Store Page”Hi @caluyadesign,
Try this instead:
div.entry-summary {
display: block !important;
}Let me know.
DiegoForum: Themes and Templates
In reply to: [Kale] Home page not responsiveHi @lifeoflola,
You’re welcome! Glad to help.
Was the issue related to the video or something else?Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Home page not responsiveHello @lifeoflola,
Hope you are having a great day and thanks for contacting us!
Apparently the issue is related to your video “Carnivore Diet Day 1”, as it seems to have the width and height hardcoded. Try removing the fixed sizes and check if that fix the issue.
?Try it and let me know how it worked.
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Remove background (increase content/ page widthYou’re welcome! Glad to help.
Please, let me know if you need any further assistance.
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Products not showing on “Store Page”Hello @caluyadesign,
I just checked your page: https://caluyadesign.com/product/non-commercial-license-commercial-use-license-product-usage but it’s giving me a 404 error. Maybe you’ve removed the product?
Please, let me know if you need any further assistance.
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Remove background (increase content/ page widthHi again!
For #1, Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:
.container { width: 100%; } body.custom-background .main-wrapper { width: 100%; }
Please, let me know if you need any further assistance.
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Remove background (increase content/ page widthHello @djrs,
Hope you are having a great day and thanks for contacting us!
#1, it is possible, but it will require a CSS cope snippet, Could you share your URL so I can see this first hand?
#2, There are two ‘built-in’ ways of doing this in WordPress (but it’s not something within the theme):
A) If you need access to the link as a PHP variable, try Using get_next_posts_link
<?php $nextLink = get_next_posts_link( $label , $max_pages ); ?> <?php $previousLink = get_previous_posts_link( $label ); ?>
From here the links are stored in variables and you can do whatever you’d like with them.
B) Otherwise use these:
<?php next_posts_link( $label , $max_pages ); ?> <?php previous_posts_link( $label ); ?>' Where $label is the name of the link ( "Next Page" in your case ) and $max_pages is the max number of pages (if you want a limit), that the link shows up on. If you want to style these, without having to enclose them inside another DIV, use WordPress Filters
function apply_my_next_link_style ( ){
return ‘class=”button”‘;
}
apply_filters( ‘next_posts_link_attributes’, ‘apply_my_next_link_style’ )`C) If you need even more control you can try this, from the source code for the above functions:
if ( !is_single() ) { echo '<a>" . preg_replace('/&([^#])(?![a-z]{1,8};)/i', '&$1', "Next Page") . '</a>'; }
#3, that text is also visible in the Pro version, but as in the free one it could be removed.
Please, let me know if you need any further assistance.
Kind regards,
Diego- This reply was modified 7 years ago by corewpress.
Forum: Themes and Templates
In reply to: [Kale] Mobile, LogoHi Caleen,
As a general rule, you should use your images cropped to fit the real image. If you need space on the sides, or need it smaller, you could always use CSS for that.
My suggestions is leaving it as is (cropped in mobile), and adding some CSS to recude the size on the desktop version.
If you add your new cropped logo, let me know so I can check that for you.
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Mobile, LogoHi Celeen,
The reason you can’t enlarge the log is because the image you’ve created has a los of white space on the sides, so when the responsive method is trying to reduce, it’s taking the whole image to make it fit.
Take your logo and cut the white sides of it, just leaving the real text in the middle. That’ll make your logo bigger on the mobile view.
If that’s produce an unexpected effect in the desktop view, please let me know so I can help fix that as well.
Please, let me know if you need any further assistance.
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Separate header image for mobile versionOf course you can! I’ll be here to help.
BestForum: Themes and Templates
In reply to: [Kale] Mobile, LogoHi Celeen,
Could you share your URL so I can see this first hand?
Thanks.
DiegoForum: Themes and Templates
In reply to: [Kale] Separate header image for mobile versionHello Stefan,
Hope you are having a great day and thanks for contacting us!
There is no such feature in the theme options, but you could do it with a CSS or JS code snippet.
Could you share your URL so I can see whether I can create that code for you?
Kind regards,
DiegoForum: Themes and Templates
In reply to: [Kale] Mobile, LogoHello Celeen,
Hope you are having a great day and thanks for contacting us!
Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:
@media (max-width: 767px) {
.logo .header-logo-text {
line-height: 30px;
font-size: 30px;
}
}And change the 30px (in each line), for the new size of the logo you want.
Please, let me know if you need any further assistance.
Kind regards,
Diego