Yanur Islam Piash
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Remove Entry Titles from pages onlyHi,
Thanks a lot, it works!
I tried inspecting with browser, could pick the css title. just couldn’t find a way to specify with the page id.
Thanks again!
I use Customizr theme free version.
Forum: Fixing WordPress
In reply to: Embed .wmv and .mov files directly from URLCan you help me with the code? Actually, I am letting others upload videos and post from within the text editor area, don’t want them mess with the plugin or shortcode. They should be able to upload and embed these types of video very “normally”.
Hi,
Not a coder myself, found the snippet in the website and worked for me fortunately.
Maybe you can try-
1. Putting the code into this file:
wp-content/plugins/bp-custom.php
2. clearing browser cache and any caching plugin you are using.
3. making sure you enabled buddypress profile from the buddypress settings menu.Forum: Plugins
In reply to: [Yoast SEO] Custom SEO Title and Meta Description just don’t work on FacebookThank you @amboutwe ??
Forum: Plugins
In reply to: [Yoast SEO] Custom SEO Title and Meta Description just don’t work on FacebookHello, I’ve fixed homepage issue by finding out the conflict between yoast seo and a sharing plugin.
But one more thing, when I share a forum, it pulls breadcrumbs and other meta data in the sharing snippet. But I want to pull only the Body of the forum- the core discussion. How to do so? here is an example forum, share this and you’ll understand: https://www.bohubrihi.com/forum-topic/is-there-a-course-on-adobe-photoshop
And about the meta template for description: can you tell me the variable for pulling the main description part of a post/page? (which we type in the text editor of “add/edit new post/page”)
Thank you!
Thank you @buddyboss
Hi,
Unfortunately I wasn’t able to inspect the exact css code. I found the class for the entire box and hid that by css below:
article.error404 .entry-content, article.format-chat .entry-content, article.format-quote .entry-content { display: none; }
Now the page looks like this: https://www.bohubrihi.com/asldjnasd
Okay I did this way and it worked. Thanks to Buddydev
Redirect Author Archive Page to BuddyPress User Profile
function buddydev_author_redirect_to_profile() { if ( is_author() && function_exists( 'bp_core_redirect' ) ) { $author_id = get_queried_object_id(); bp_core_redirect( bp_core_get_user_domain( $author_id ) ); } } add_action( 'template_redirect', 'buddydev_author_redirect_to_profile' );
ou can put it in your theme’s
functions.php
or inwp-content/plugins/bp-custom.php
Forum: Fixing WordPress
In reply to: Redirect when an URL contains a specific slugadd this snippet to your theme’s
functions.php
file orbp-custom.php
file.Forum: Fixing WordPress
In reply to: Redirect when an URL contains a specific slugOkay I did this way and it worked. Thanks to Buddydev
Redirect Author Archive Page to BuddyPress User Profile
function buddydev_author_redirect_to_profile() { if ( is_author() && function_exists( 'bp_core_redirect' ) ) { $author_id = get_queried_object_id(); bp_core_redirect( bp_core_get_user_domain( $author_id ) ); } } add_action( 'template_redirect', 'buddydev_author_redirect_to_profile' );
Forum: Themes and Templates
In reply to: [Customizr] Show Vertical Menu only to logged in usersMy website: https://www.bohubrihi.com
Forum: Themes and Templates
In reply to: [Customizr] Stop Sticky Header from being shrinkedThis helped, thanks a lot ??
And yes I was wrong about the vertical menu icon- it doesn’t shrink.
This was because of a conflict between woocommerce and BadgeOS Community Add-on. I deactivated BadgeOS Community Add-on and my website looks fine.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Child Theme ModificationHi @wpdreams,
Works nice. Thank you ??