Forum Replies Created
-
AuthorPosts
-
satoriKeymaster
Hey Sven,
I’ve double-checked the code snipped I’ve provided above, and it does work with Kanso; since your website is currently down (it says “Error establishing database connection”), I can’t check the code; please let me know when it’s live again.
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Groovmastas,
could you please provide the direct link to the page in question? – I’ll be able to provide a more precise recommendation when I see what happens in the actual code. In case you don’t want to disclose the URL here, you can send it to support[at]satoristudio.net
Thanks!Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Groovmastas,
first of all, thank you for using Kanso!
There’s no back-end setting to turn the headings into sentence-case, since the uppercase is a part of the theme’s concept; however, you can achieve this by adding some custom code: please try inserting the following line into the “Style: Add Custom CSS” tab of the Theme Options panel:
.serif, cite, h1, h2, h3, h4, h5, h6, #content h1 a, #content h2 a, #content h3 a, #content h4 a, #header-image h1 a, #header-image h2 a, #header-image h3 a, #header-image h4 a, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited { text-transform: none !Important; }
Do not forget to hit the “Save All Changes” button in the right corner to save the new settings.
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Michele,
line 146 of the “recent-posts-slider.php” file I’ve mentioned above says:
$img_details = wp_get_attachment_image_src( get_post_thumbnail_id( $val_p['post_ID'] ), 'full' );
which implies that the image being taken is the full version of the image. Could you please describe which amendments you’ve made to the “recent-posts-slider.php” file and how you added the post image that currently seems pixelated? Thanks!
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Michele,
could you please re-send the email to support[at]satoristudio.net? The address you’ve mentioned above does not exist on our server :) Thanks!
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Michele,
there’s no back-end switch to deactivate the built-in plugins, yet you can do that via the theme’s “functions.php” file (located in the theme root): replace line 683 from this:
include_once( get_template_directory(). '/includes/shortcodes-ultimate/shortcodes-ultimate.php' );
to this:
// include_once( get_template_directory(). '/includes/shortcodes-ultimate/shortcodes-ultimate.php' );
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Tinchox17,
in Ikebana, projects are displayed on the portfolio masonry grid page template and posts are displayed in the classic blog for the following reason: in the website’s structure, the mentioned masonry page serves as a page to showcase works or other items, not as a universal front for all what’s happening on the website. Technically, one can in principle have both posts and projects displayed in the same grid, yet that would require altering the theme’s template files, most importantly the “page_portfolio.php” file; it needs to start by adding the posts to the main query that generates the loop for that template, namely changing line 69 from
$wp_query = new WP_Query( array( 'posts_per_page' => $ppp , 'post_type' => 'project' , 'paged' => $paged , 'post__not_in' => $exclude_ids, 'order' => $order, 'orderby' => $orderby ) );
to
$wp_query = new WP_Query( array( 'posts_per_page' => $ppp , 'post_type' => array( 'project', 'post') , 'paged' => $paged , 'post__not_in' => $exclude_ids, 'order' => $order, 'orderby' => $orderby ) );
However, additional customizations in the theme’s CSS styles and other template files (such as “content.php”) might be necessary for this to work as needed in this case.
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Michelle,
could you please provide a direct link to the page with the slider? I’ll need to see the actual code in order to give specific advice. Thank you!
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Michelle,
the height of the Recent Posts Slider is fixed at 226px, which is why the image will become pixelated if its height is changed via CSS. You’d need to increase the image height in the “/includes/recent-posts-slider/recent-posts-slider.php” file, in the function “rps_post_img_thumb()” in order to get the slider to use a larger image.
Sincerely,
Andrii / Satori StudiosatoriKeymasterHey Paula,
first of all, thank you for using Ikebana!
Regarding your question: please make sure that you’re inserting the URL of the video into the content of the said project, e.g. https://www.youtube.com/watch?v=Ks8WH3xUo_E – in other words, the link you get from your browser’s address bar (top bar) when you go on the video’s page on YouTube. It shouldn’t be the embed code provided by YT, because the theme is capable of parsing URLs by itself. If this does not help, please let me know!Sincerely,
Andrii / Satori Studio -
AuthorPosts