How do I change the text/link in WP plugin? - wordpress

I have a WP site: https://transscreen.ru/
Installed the plugin UltimatelySocial. It displays in the footer: powered by UltimatelySocial as a hyperlink.
I hid the text of the page by adding to the style.css of my theme:
.sfsiplus_footerLnk{
display: none;
}
But it stayed in the code of the page:
Now I want to completely remove or replace the text\link in this div.
Can you tell me in which file it would be prescribed or how to make it not to be displayed in the code of the page at all?

Related

add other then default footer in WordPress v6.0

I am new in WordPress,
I want to know how to add footer other then default footer
( example: Footer file name - home-footer.php and need to use for home page, same as contact-us-footer.php for contact us page ). let me how i can achieve this.
if you are adding your files in theme or WordPress core files then this will automatically remove when your WordPress will be updated unless you creat child theme so just better to create to footers with any page builder I recommend elementor and then hide that with page id you will find that in the body tag of every page like this
.page-id-111 .footer{
display:none;}
Let me know if you don't understand anything
You have to name the file footer-home.php. Then you can call this footer in the page template (i.e. page-home.php) using get_footer('home').
Wordpress will use the right file, if it is named correctly starting with footer-*.php.

How to delete Last Update date in wordpress' page?

I'm newbie in wordpress. I got website: http://xn--lnepengerprivat-hlb.com/ and on homepage (it's page, not a post!) I've got Last Update date. How to delete it? Please help me
Add this css in your style.css or find in your theme file and remove the php code.
.page-last-modified {
display: none;
}
You could hide the page post date by using CSS, either in a styles.css file or in the custom CSS editor of WP Customizer.
.page-last-modified {
display: none;
}
Another solution would be to delete the whole block in the page template file of your child theme.

Wordpress Category Page (unclickable)

Recently I have been working on my WordPress blog website is French https://www.geekparfait.com/.
I am using FlatNews WordPress theme http://demo.sneeit.com/flatnews/
Everything was going pretty well. But now I am facing this issue on my categories pages https://www.geekparfait.com/category/ios/. Its like I am unable to click the posts on category pages. The same issue is on the category pages sidebar as well.
But on the homepage https://www.geekparfait.com/, everything is working fine. I am able to click and open the posts on the homepage.
Hope I can get some insight from you guys.
Thanks
The issue is with the sidebar and the position attribute of it. Please try out the below code in style.css or theme option panel custom css setion.
.category section.fn-primary > strong {
position: inherit;
}
Hope this will work for you.
Screenshot
The problem is the sidebar is generating that can click in that entire div, try changing that position: relative. with
.category strong {
position: inherit!important;
}

How to create a landing page with the child theme

I have purchased MasterStudy theme for my website and It doesn't have a template with no header or footer to create a landing page. My question is: how can I create a page with such template via its child theme and use visual composer to add the content? Is this possible?
Not sure if I completely understood your situation, but I'll try to help anyway.
Have you checked all the Theme Options? Sometimes you can easily delete the footer and header through the Theme Options. In case you have and there's not an option to do so, the smart move would be to create a custom page to fit your needs. You'll find some information about how to do so right here http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/
Remember that the visual composer only edits the content of the webpage per se, meaning, it can't modify the template structure (footer and header in this case).
Hope it helps!
Actually, the solution is much more simple than I thought. I resolved it by adding custom CSS to hide the header and the footer of the page by mentioning Its ID. Here is the Code I used >>
.page-id-2114 #header {
display: none;
}
.page-id-2114 footer {
display: none;
}

WordPress Twenty Thirteen Theme: How to hide ".entry-content" only on main page

I would like to hide the body text below the headlines on my blog's main page, the page where all articels are listed, but would like keep it on the single post page.
My first thought was to set .entry-content to display:none but this made it disappear on both pages.
Does anyone have an idea how to remove it only on the front page?
Wordpress assigns a unique class to the body for each page. you can see the body classes by viewing source. Home page is given the class .home so you could target entry-content this way:
.home .entry-content{ display:none; }
alternatively you can create a custom template for your home page and just remove the html.
http://codex.wordpress.org/Page_Templates

Resources