Forum Replies Created
-
AuthorPosts
-
Here
Any idea?
This reply has been marked as private.This folder is writable with 777 settings.
I’ve created a enfold_child_it.css empty file on this folder and it works now.
Thanks for the inspiration ;)
Here
No problem
Here
Yes, exactly
November 3, 2016 at 12:35 pm in reply to: Add sidebar settings to custom post type on a chil theme #707695It’s possible to show breadcrumb hierarchy setup box?
I would like to use session data to build the breadcrumb.- This reply was modified 8 years ago by alnalu.
November 3, 2016 at 12:18 pm in reply to: Add sidebar settings to custom post type on a chil theme #707685Ok, thanks
Sorry, it works. It was my fault
It works, thanks
Thanks Vinay, but the idea is to keep the category title without the link, not hide the title.
It’s possible?
I’d solved this issue. Now the link doesn’t show the lightbox.
I’ve make this:
functions.php
add_action('wp_footer', 'ava_custom_lightbox'); function ava_custom_lightbox(){ ?> <div id="test-popup" class="white-popup mfp-hide">CONTENT GOES HERE</div> <script type="text/javascript"> (function($) { $(window).load(function() { $('.open-popup-link').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script>
style.css
.white-popup { position: relative; background: #FFF; padding: 20px; width: auto; max-width: 500px; margin: 20px auto; }
Custom link at secondary menu
`#test-popup’What’s wrong?
Any idea?
Thx Ismael
It works okHi,
No problem, you are allowed.login data
Here
It doesn’t works. This causes a 500 error appears in the frontend.
The custom fields options of portfolio items are not visibles.Here
Sure,
I need to have two diferent titles for any porfolio item. One title is show on portfolio gallery. The other one is show on portfolio item.
I’ve done this in the pages, using a template. But I dont know what file must modify to add a custom field on a portfolio item.Sorry, it was my fault. I must use the template-builder.php file intead page.php. Now it works ok.
The portfolio breadcrumbs can be build using data session. Its possible do the same with pages?
March 8, 2016 at 5:59 pm in reply to: List the tags used on portfolio items grouped by category #595093I’d grouped tags with this code, but it print the whole post :(
function show_portfolio_category($atts) { extract( shortcode_atts( array( 'tipo'=> '' ), $atts ) ); query_posts('portfolio_entries='.$tipo); if (have_posts()) : while (have_posts()) : the_post(); $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $key => $tag) { $all_tags_arr[$key]['name'] = $tag -> name; $all_tags_arr[$key]['count'] = $tag -> count; $all_tags_arr[$key]['link'] = get_tag_link($tag -> term_id); } } endwhile; endif; echo "<h4>Tags</h4>\n"; echo "<ul>\n"; foreach($all_tags_arr as $tag) { echo "<li><a href='".$tag['link']."'>\n"; echo $tag['name']; echo "</a> (".$tag['count'].") </li>\n"; } echo "</ul>\n"; add_shortcode('portfolio_category', 'show_portfolio_category');
Here
Hi
I’ve the same problem using the Advanced text editor. In order to isolate the issue, I did this test:
1. Create a new page adding a link with the standard editor. SL works
2. Change to advanced editor and actualice the page. SL works
3. Add a new link and actualice the page. Link 1 works, link 2 doesn’tIt works, THX
I’m looking for build a URL like domain.com/portfolio_cat/portfolio_item
This plugin allows to add some labels like %postname% or %category% to de URL on permalink settings. The question is what label may to use to add the portfolio cat.
Here you have.
-
AuthorPosts