Hi Kriesi Team,
I’ve got a question concerning the permalinks, that go along with each portfolio entry. I’ve created a page and named it “showreel”, to show some videos our company has made. Every spot is a separate entry with a separate portfolio page. Unfortunately, every portfolio page is named like this in the permalink:
name of my page/portfolio-item/name of video 1
name of my page/portfolio-item/name of video 2 etc.
I would like to have it this way:
name of my page/showreel/name of video 1
I came across a forum entry, that focuses on the same problem.
https://kriesi.at/support/topic/portfolio-items-permalink-and-breadcrumbs/
But I couldn’t find a proper solution for me.
My questions are:
a) is it possible, to change portfolio permalinks simply in the programming back-end? Change php code etc..?
b) can it be done via a plugin?
c) or am I forced to create my own custom post type, like Davin suggested it? (#163128) Can it have the same functionality like the classic portfolio? It seems to me that this is the most elaborate solution, because I would have to create the post type and re-create each portfolio entry new.
Thank you for your answer and best regards.
Hi there,
I’d like to add this code to the top header next to the telephone number at the top of a site, it’s for qtranslate, I don’t like WPML:
<?php echo qtrans_generateLanguageSelectCode(‘dropdown’); ?>
Thanks
Silvio
Hey!
Please refer to this post to change the width to switch to mobile menu https://kriesi.at/support/topic/collapsable-menu/#post-165144
Cheers!
Yigit
I’m using the plugin Types to manage custom post types.
When the content of such a cust post type is displayed, you will see the standard “Blog – latest news” and also the meta data (author, date) being displayed in the top of such a page.
See also the example here:
http://grab.by/rIYe
http://grab.by/rIZY
Is it possible to change or hide these details for custom post types?
Hey!
The numbers are not correct for the second set. There is no 6th element so that css effects nothing visible. Changing it to 1,2,3 for each would however.
For the border, you can use:
#top .social_bookmarks li { border: 0;}
Any other issues should be started in a new topic.
Best regards,
Devin
Hi!
It looks like the borders aren’t showing any longer from this css:
.container_wrap {
border-top-style: none;
}
Cheers!
Devin
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 768px) { .logo a { overflow:visible!important; }
.responsive #top .mobileMenu { margin: 35px 0 10px 0!important; }}
Best regards,
Yigit
-
This reply was modified 12 years, 3 months ago by
Yigit.
Hey Tim!
1) Fullwidth elements such as LayerSlider, Color Section etc can be used only without sidebar. Or such issue will occur. However, you can add Widget Area element under Content Elements and add your widgets into it if you really need to use sidebar widgets and color section in the same page.
2) Please add following code to Quick CSS in Enfold theme options under Styling tab
.logo img { padding-top: 15px; }
.header-scrolled .logo img { padding-top: 0; }
Regards,
Yigit
Hey LAHWebDesigns!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired
#top .gallery .gallery-item { width: 160px; height: 160px; }
Regards,
Yigit
Hey!
It can be fixed with adjusting z-index values. But in that case, Facebook icon should be moved out of the table. Please add following code
#header_main_alternate { z-index: 2; position: fixed; top: 0; }
#header_main .social_bookmarks { right: -45px; top: -19px; }
#header_main { top: 35px; }
.html_boxed #main { margin-top: 35px; }
Then let us know so we can adjust Facebook icons position
Cheers!
Yigit
Hi!
It’s unfortunately a limitation/bug of wordpress: http://wordpress.stackexchange.com/questions/87472/ensuring-sticky-posts-are-retrieved-first-without-using-two-queries
You can try to add following code to the functions.php file of the theme
add_filter('the_posts', 'bump_sticky_posts_to_top');
function bump_sticky_posts_to_top($posts) {
foreach($posts as $i => $post) {
if(is_sticky($post->ID))
{
$stickies[] = $post;
unset($posts[$i]);
}
}
if(!empty($stickies))
return array_merge($stickies, $posts);
return $posts;
}
which is a slightly modified version of the workaround someone posted here: http://wordpress.stackexchange.com/questions/87472/ensuring-sticky-posts-are-retrieved-first-without-using-two-queries but it doesn’t work for me very well. Another solution would be to use a plugin like http://wordpress.org/plugins/post-types-order/ which allows you to manually sort the posts but the disadvantage is that you need to check the sort order after you published a new post.
Regards,
Peter
Okay thanks that works. Thank you. Question: will all future videos I insert using the avia editor autoplay now?
Hi, I’m making a site at http://atlasdigital.se/masterjohan/.
At the top right, I’ve made a menu item called “Tjänster” which means “Services” in english. As its child pages I’ve listed 3 different kinds of services my client offers.
Is there a way to create that first menu item “Services” without being able to click on it? I don’t really want to have the visitor to first go to a parent page and then continue to the 3 child pages. I thought I’d cheated the system by pointing the parent page to the starting page, but after a while I discovered that going to the starting page highlights the “Tjänster/services” page.
– Do you see the problem? I would very much like some advice on this. It might not be theme related, maybe you know of way to create a menu item that is just there to show child pages?
/ Andreas
Hi!
The code I posted above doesn’t work yet – that’s why I said it will work with the next update.You can try change the z-index of the post nav links with following css code
#top .avia-post-nav {
z-index: 200;
}
Regards,
Peter
Hi ksakkos!
No, right now the search results page does not support a special layout for portfolio entries. You can request this feature here: https://kriesi.at/support/topic/enfold-feature-requests/page/13/ and if more user request this feature we might look into it.
Best regards,
Peter
Hi!
Try following css code
#top #wrap_all .avia_textblock p .av_font_icon {
display: inline;
text-align: initial;
float: none;
margin: 0;
}
Cheers!
Peter
Hi timfl!
Yes, we use the standard get_adjacent_post() function which is quite limited and which doesn’t support taxonomy terms at the moment. However the WP dev team plans to improve it with wp3.8 ( http://core.trac.wordpress.org/ticket/17807 ) and they already included a fix in the developer version. For now the only suggestion I can provide is to hide the prev/next arrows until wp3.8 is released. Insert following code into the quick css field to hide the arrows on portfolio pages:
#top.single-portfolio .avia-post-nav {
display: none !important;
}
Best regards,
Peter
Hi glozemedia!
Do you want to re-size the phone number at the top? If yes use following code
@media only screen and (max-width: 767px){
#top .phone-info.with_nav span a{ font-size: 10px !important; }
}
Phones and mobile devices with small screens (767px width or lower) will change the font size to 10px. You can change the font size and/or max-width value if my code doesn’t give you good results.
Best regards,
Peter
Hi!
Please try to use Codestyling instead: http://wordpress.org/plugins/codestyling-localization/
Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
Regards,
Peter
Hey!
I’m sorry but can you please post a screenshot of what you’re trying to do? You can use imgur, dropbox, mediafire to post the image here.
Cheers!
Ismael
Hallo Ismael,
I update the Picture above.
number 3 is comersee.de
number 4 is how it looks at kriesi.at
When i click on the button or a link to a anchor, the page scroll down in the right way.
The problem is when it stop to scroll.
In the above example from kriesi.at it stop scroll exact in a line with the main content.
On comersee.de I just lived the opacity, so you can see that when the page scroll down and it stops, a small part of the content goes behind the header. To work in the wright way, the page, after scroll, should stop exactly to a line with the main content, without hiding behind the header a small part of the content.
Using another header insteat of “fixed header with social icon and navigation” then it work propely.
Ich versuche auf Deutsch
Das problem liegt wenn der Link/button geklickt wird und die Seite bleibt stehen nach der runterscrollen.
Auf Kriesi.at nach der scrollen, bleibt die Seite exact auf eine linee mit der Inhalt stehen.
Das problem passiert falls die “fixed header with social icon and navigation” benutzen wird.
Die Seite scrollt zwar runter bleibt aber stehen nicht auf eine linee mit der Inhalt, sondern teil der Inhalt wird hinter der header versteckt bleiben. Diese kleine Teil, habe ich auf der “nummer 3” mit der Pfeil mit doppel Spitzen auf der screenshot gekennzeichnet.
Sorry if I cannot explain very well. Is a bug where I can live with it by increasing the padding top on the first content item. But this i need then to do it on every single page.
thank you
Antonio
Now it’s stretching vertically (see screen grab linked below). Again, it only happens if you scroll down the page, so the small header/logo activates, and then you hit reload (see my previous post/description) — a rare circumstance for the average user.
https://www.evernote.com/shard/s320/sh/0913d311-15b2-44b2-834f-7ab499585d05/7f59081bf3b9f265968c3cdfb4555e44
Hey krear!
You can add this on your custom.css or Quick CSS:
sup {
font-size: .6em;
position: relative;
top: -5px;
}
sub {
font-size: .6em;
position: relative;
bottom: -1px;
}
Best regards,
Ismael
Hey!
Please try this on your custom.css or Quick CSS:
.logo img {
min-height: 116px;
}
.header-scrolled .logo img {
min-height: 58px;
}
I checked your website and the logo shrink and resize as expected when you scroll the browser up and down.
Regards,
Ismael
When hovering on the image in the Easy Slider, the file name appears which I would like to stop. I found a fix on the topic
https://kriesi.at/support/topic/easy-slider-image-name-file-name-when-hovering-it/
however it didn’t work.
The recommendation was to do the following:
You can edit js > avia.js, find this code on line 5-6:
$(document).ready(function()
{
Add this code below:
$(“.avia-slideshow li img”).attr(‘title’, ”);
I gave the file a different caption and Alt Text as well but neither over-rode the file name.
Any other suggestions on how to stop the file name from appearing on hover over the Easy Slider?
Thanks
Hi! Thank you for the quick reply, you guys have been awesome and I want this to be perfect for the University.
I would link, but its on a VPN.
Here is a screenshot i’ve done http://www.valoragency.com/wp-content/uploads/2013/11/done-so-far.png (I customized the top-boxes with shadows, etc, so I got that part down.
But for arranges me I would love to be able to do something similar: (not by my choice – the design of the blog)
http://www.valoragency.com/wp-content/uploads/2013/11/example.png
Sized image on the side, title on the right top, some content, and the read more. Just trying to style is similar to that but having no luck! blah!
Any help would be so awesome! Thanks a million.
Mike
-
This reply was modified 12 years, 3 months ago by
mdlhale.
Quick response, unfortunately no joy. That makes the majority of side menu items hard return, and to me overrides the original CSS fix:
`#top .widget_nav_menu li {
min-width: 300px;
}
Hey!
Please add following code to Quick CSS as well
#top .widget_nav_menu li {
min-width: 90px;
}
Regards,
Yigit
Almost a success! Works as I want, except when the screen is reduced to tablet size. Unfortunately the side menu items become hidden beneath the main section instead of hard returning. Any ideas?
