Frederic Serva
Forum Replies Created
-
Forum: Plugins
In reply to: [Birds Author Box] Exclude posts (like events, galleries)?Forum: Plugins
In reply to: [Birds Author Box] Exclude posts (like events, galleries)?Do your event & gallery posts belong to categories named ‘event’ and ‘gallery’?
If so, you can exclude these categories:Open frontend.php (in ‘Public’ folder)
Find line 94if ((!is_singular($custpt) && !in_array(‘woocommerce-page’, $bodyclasses)))
and add just after $bodyclasses) (mind the bracket!)
&& !in_category( array( ‘event’, ‘gallery’) )
Save the file.
Done!Forum: Plugins
In reply to: [Birds Portfolio] Tags?You can do that but you’ll have to modify the Custom Post Type to accept tags then change some other files š
If the plugin is a hit, then I would consider to add this feature š
Forum: Plugins
In reply to: [Birds Portfolio] Portfolio Templates within Theme FolderI anticipated this case…
If you put portfolio.php, archive-portfolio.php and single-portfolio.php in your theme directory, in a folder named templates, those files will have the priority.Forum: Plugins
In reply to: [Birds Author Box] "ul" bullets in Author BoxHere is the custom CSS (with the previous formatting) to add in the textarea.
.author_box_tabs_navigation li { list-style-type: none !important; }
ul.author_box_tabs_navigation { margin:0 !important; }
.author_box_tabs nav { margin-bottom: -53px; }Forum: Plugins
In reply to: [Birds Author Box] "ul" bullets in Author BoxI’ve added a new tab in the settings to help fix this kind of conflicts with themes.
Go to the tab named Custom CSS and type in the textarea:.author_box_tabs_navigation li {
list-style-type: none !important;
}Save the settings.
That should do the trick!Forum: Plugins
In reply to: [Birds Custom Login] /login url redirect brokenIām closing this issue and mark it as Resolved due to lack of reply
Forum: Plugins
In reply to: [Birds Portfolio] Equally sized portfolio items in archiveYou can upload images that are equally sized š
or
You can play with the CSS…
You can add, for instance:.portfolio_item {
height: 150px;
overflow: hidden;
}Forum: Plugins
In reply to: [Birds Custom Login] /login url redirect brokenNo one?
Forum: Plugins
In reply to: [Birds Custom Login] /login url redirect broken???
In a default WordPress intallation, domainname.com/login redirects to domainname.com/wp-login.php
Are you using a plugin that allows you to change the login page url?If so, that might be the reason.
Forum: Plugins
In reply to: [Birds Portfolio] Open the project link directly from thumbnailOpen portfolio.php (in the ‘/assets/templates/’ folder of the plugin).
Find line 114.
Insert a new line BEFORE line 114 and type:$link = get_post_meta(get_the_ID(), 'birds_portfolio_link', TRUE);In the following line
<a href="<?php the_permalink(); ?>"><span class="icon-link"> </span></a>change
the_permalink();with
echo $link;Save the file.
You’re done!Forum: Plugins
In reply to: [Birds Portfolio] Images much too widthHi!
As said in the ‘description’ tab of the plugin:
Those templates have been designed to meet the specifications of a theme based on Zurb Foundation 5
Your site is based on Bootstrap.
So, you have to modify the template files according to your needs, you’ll find them in the ‘/assets/templates/’ folder of the plugin.
Forum: Plugins
In reply to: [Birds Author Box] Disjoined Birds Author BoxI think it’s a conflict with another plugin…
Can you try something?
First backup the original files to be able to reverse the process if it doesn’t work…Open additional_fields.php (in the ‘/wp-content/plugins/birds-author-box/admin’ directory)
Line 26, change$user_contactmethods['twitter'] = __('Twitter URL', 'birds-authorbox') . '<p class="description">' . __('URL must be complete, i.e. beginning with http:// or https://', 'birds-authorbox') . '</p>';to
$user_contactmethods['twitter2'] = __('Twitter URL', 'birds-authorbox') . '<p class="description">' . __('URL must be complete, i.e. beginning with http:// or https://', 'birds-authorbox') . '</p>';Save the file.
Open frontend.php (in the ‘/wp-content/plugins/birds-author-box/public’ directory)
Line 181
if (get_the_author_meta('twitter', get_query_var('author')))add
2right after
get_the_author_meta('twitter, just before the single quote.
Repeat that step on line 183
$content.= '<a class="social_icon" href="' . esc_url(get_the_author_meta('twitter')) . '" target="_blank"><img src="';Save.
Go to a profile and tell me.
If it works, I’ll publish an update.Forum: Plugins
In reply to: [Birds Portfolio] Change link form portfolio page to galleryI don’t understand where you want the link to redirect.
But if you want to change it, you can find it on line 114 in the file named portfolio.php (in the ‘assets/templates’ directory)<a href="<?php the_permalink(); ?>"><span class="icon-link"> </span></a>For now, it redirects to the project page…
Forum: Plugins
In reply to: [Birds Author Box] Disjoined Birds Author BoxAgain, it’s just a CSS issue.
Your theme is overriding some CSS of the plugin.To correct this:
Open authorbox_front.css (in the ‘/wp-content/plugins/birds-author-box/public/css’ directory)
Find line 86 and type:
margin-bottom: -53px;instead of
margin-bottom: -47px;After line 91, add a new line and type:
margin:0 !important;Save the file.
In the profile page, in WP admin, it’s said:
Twitter URL
URL must be complete, i.e. beginning with http:// or https://