Forum Replies Created
-
AuthorPosts
-
satori
KeymasterHey Rumbledesign,
the tag archive pages are generated automatically with each new portfolio tag you create (in “Portfolio -> Tags”). The icon menu is a separate entity with only draws on the information contained in the tags you create. So even if you do not use the icons, you can still use the tag pages, which you can view by going to the “Portfolio -> Tags” admin menu section and clicking on “View” below the selected tag.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Csaba,
if you want to display only the first tag, you can use this:
ID , 'tagportfolio' );
print_r($p_terms);
if ( $p_terms && ! is_wp_error( $p_terms ) ) {
$term_links = array();
foreach ( $p_terms as $p_term ) {
$term_links[] = $p_term->name;
}
$termslinks = $term_links[0];
echo ''.$termslinks.'';
}
?>
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Erica,
Glad it works! I will include the new code into the theme update to version 1.2 that I’m submitting right now ;)
Best,
Andrii / Satori Studiosatori
KeymasterHi again :)
After much troubleshooting I’ve corrected the link issue, it seemed that the “Smooth Scrolling” jquery code from the “header-functions.php” file was causing the problem; I still couldn’t figure why the code works fine on the theme demo website, yet corrected the master code as well just in case, and will include the update into the next theme version (the upcoming 1.2). Thank you for bringing this up!
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Quentro,
I can still see the social icons in the header of your website – have you removed the WPML code? Could I have a look at what it looks like when it’s there? Thanks!
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Quentro,
I’ve tested the plugin with Kanso, and it looks like the “Automated” minify option breaks the theme’s stylesheet references. Please use the “Manual” minify mode in the “Minify” section of the plugin settings – in this case everything works fine ;)
Just a side note – I highly recommend to not use caching plugins while the website is in development, and only switch them on when everything is ready. This does not concern Kanso or any other theme in particular, yet is a general piece of advice for website building.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Rumbledesign,
I cannot access the website at the moment, it is in maintenance mode, thus difficult to comment on the social icons issue without seeing the code.
Regarding your second question: yes, it is possible. Please download the latest version of Ikebana from your ThemeForest account (ver. 2.1), find the “content-aside.php” file inside the “Ikebana_Installable.zip” main theme archive, and upload it into the theme folder on your server (i.e. /wp-content/themes/Ikebana/). Then declare the project with the logo as an “aside” format.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Rumbledesign,
all pages of “Portfolio” layout in Ikebana are designed to display all portfolio items, thus only creating one more page would not help here; you can try using the portfolio tags as differentiators, and using the tag archive page URL for the second page; here’s an example tag page from the theme demo. By design, it can be reached by clicking on the “Services” icon menu item when not from the main portfolio page; you can use the direct URLs of such pages in menus etc to create links to “alternative” portfolio pages.
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Csaba,
None of these are really theme issues, rather php and css tricks, yet as a Christmas present here goes:
1). Instead of
#nav-primary ul li:first-child a {
visibility: hidden;
}
try using
#nav-primary ul li:first-child a {
text-indent: -9999px;
display: block;
}
2). The code you were using does not match the code from the example I’ve given earlier, please try this:
ID , 'tagportfolio' );
print_r($p_terms);
if ( $p_terms && ! is_wp_error( $p_terms ) ) {
$term_links = array();
foreach ( $p_terms as $p_term ) {
$term_links[] = $p_term->name;
}
$termslinks = join( ", ", $term_links );
echo ''.$termslinks.'';
}
?>
For the tags to display, you will need to disable the “Truncate text on portfolio and blog pages” script from the “header-functions.php” file, please look at lines 625-647 of the file for it. Moreover, I recommend inserting the tag code before the content of the box, not after it, since it may remain pushed beyond the post boundary by the content.
3). You can do it with CSS:
#respond .comment-form-url { display: none; }
Sincerely,
Andrii / Satori Studiosatori
KeymasterHey Leanne,
1). The URL you’ve provided contains a category header, which was indeed not affected by the code I gave earlier (as followed from my comments to the code). In case you’d like that gone too, please use this code as well:
#blog-header { display: none; }
2). The website has no logo at the moment, there is probably an issue with the uploaded images. Could you please re-upload, making sure the following: in case the „File URL” field in the upload pop-up displays an attachment URL (ending with „?attachment_id=xx” press the „File URL” button below the url field so that the link is a direct url of the image file (ends with the filename of the uploaded file). Please also remember to hit the “Save All Changes” button in the theme options panel to save the configuration. In case this does not help, I will need to ask you for the admin login and password to check the back-end myself. You can send the information to support@satoristudio.net.
Sincerely,
Andrii / Satori Studio -
AuthorPosts