Removing Yoast SEO plugin v4.6 and credit - php

i am working on a project to remove a credit from WP plugin because it is showing in source code under header code

On a plugin, all the texts or contents are in the plugin folder.
Open all the files in a text edit sodtware like Sublime Text, and press ctrl+shift+F to find a string across all the files. You will find a result, then just remove or change it, and upload on your web server.
But don't forget why credits exists, it's many work to create this kind of plugin, and if the credit is not visible on the web page (like in the footer), you should keep it ;-)

You can edit files of the plugin, but I think the next update of the plugin will overwrite your changes.
You can also add a display:none to the credits, see here
But don't forget, credits are a way to pay and thank the developer for is work ;)

Related

Default text appears on wordpress

Actually i'm working on a wordpress website, which is related to school, i'm using universh WP theme which is purchased. I'm getting the below text as default:
Want create site? Find Free WordPress Themes and plugins.
See, i've marked those words. Actually its a dynamic page, i've checked the core code. It's only the
the_excerpt()
function. After that i don't have any idea, where it comes from. Also i've read this thread So please don't recommend that thread, its not working i've tried the way there mentioned.
P.S. Also the text will disappears when I login and try to edit the page.
What text editor You use ? Most easy way will be open folder with theme in some editor and search this string "Want create site? Find Free WordPress Themes and plugins." in all files - then You will know where they add it ... or You can check every file, because this string must be included somewhere, maybe in function.php they add some modification to the_excerpt();
I think when you ass content in post default editor then is not showing in the_expert() function
So you can add content in expert editor then after call the_expert() funtion
Check that your theme is not using the get_the_excerpt filter to prepend that phrase to all the excerpts.
Additional, if you only checked the files that load for that specific template, I would recommend that you run a search for that string for the entire theme. The source of the issue might stem from functions.php or even some JavaScript file.
Please update the core files or update version of your WordPress. Use Latest one.

Edit WP payment plugin

I want to edit a payment plugin for Wordpress. The plugin that I´m using for my site is Photo Seller Plugin (https://www.tipsandtricks-hq.com/wordpress-photo-seller-plugin), but I want to change the checkout site, because this is too old. So I was thinking in implement that plugin but using from checkout another payment plug in.
It´s this possible, can I change the checkout part editing the PHP files? I took a look at the files and both of them have many folders and files. I want to know if someone has done this before to give me some light in the problem.
I have been seeing that has many folders dedicated for the checkout, and I should change all the variables and make it one, so I don´t know by where I can start.

Magento and Wordpress Joint. How do i edit a page manually or the CSS?

I am having problems trying to figure out how exactly i can edit a simple page of the website. I didn't initially create it so i am given the task of trying to understand someones code. So the problem is... i am trying to change the simple font colour on the front home page, but i cannot even find the CSS file on magento or Wordpress so i'm kind of confused. I want to change the white font colour to black.
Do i just log in with FTP and edit the pages manually on there? Please give me some information on how i can go about editing any pages at all.
Wordpress
Wordpress have /wp-content/themes/ for a directory which stores all instaled themes (downloaded or created by you). You can edit everything of a theme there. The default stylesheet file in wp's /wp-content/themes/[yourtheme]/style.css. Attention: this CSS file can import another from somewhere else.
Finding the style
You can find the ids and classes statements just positioning the mouse over the element that you want to discover what is influencing it, right button click and select Inspect Element if in Chrome or Mozilla. An add-on to help is Web Developer.
Possibly useful links: http://ithemes.com/tutorials/ ; http://mcbuzz.wordpress.com/wordpress-tutorials-complete-list/ ; http://themeshaper.com/2009/06/22/wordpress-themes-templates-tutorial/ ; http://line25.com/articles/15-tutorials-to-help-you-build-wordpress-themes
Web developer
Mozilla | Chrome
#edit Yes, you can edit via FPT or SSH connection ;P
In wordpress you should check in settings->reading what the front page is set to and css changes can be done in the theme folder wp-content/themes/theme_name/ and for magento the css is usually in /skin/frontend/package/theme/css. or somewhere close depending on the template.

Edit WP html code, but cannot find the page

I am new to Word Press and I have been assigned to change something at work in our homepage.
I am always worked with raw HTML/CSS/php files, so I am a bit out of place here.
The page in question is the following: GAN Integrity Solutions Products
Inspecting the html I found where the CSS is (in the theme folder).
If I go in word press under pages, and I choose Products (which is the page I want) there is not content in it even in the text or visual editor. (but the page does indeed have content)
I installed the plugin called "Always edit in HTML" but it only removes the Visual tab and does not really replace it with the HTML tab (like I have seen a friend of mine has).
Also I am currently using WP v. 3.7.1 and I have not update because I still had to learn what happens when one updates (does it screw up my site? I can't afford to screw it up).
Anyone have any idea of what I am doing wrong or how I can solve this?
Btw the different "products" are created individually under "Portfolio" but what I would like to edit is that first link page html. What I need to do is instead of having pictures in the "squares" and then text as ones mouse over them, the reverse.
I would appreciate it!
Can you try to login in Wordpress?
You should go to pages and search for the product page.
Then check the template part.
Go to your themes map again and search for that template.
Your code should be there.
This is my first comment. Hope it is helpfull.

How do I edit the code of a WordPress site?

I am helping out a family member with their WordPress blog and he/she wanted to have the comments show on the main front page. This way, users don't have to click through the title to add a comment. If that is impossible, he/she wanted to have instructions like "click here to add a comment" near the title.
I know how to write html/css etc., so I would just go in and type in some code but I don't have an FTP account. Is there a way to edit the html of a WordPress site through the WordPress Dashboard menu thing? I would ask for a FTP account, but I doubt he/she knows how to create one. Also, would doing this really screw things up for WordPress? Any and all help is appreciated. If needed I can give the URL, but I would rather not have people trying to post comments and mess around with the site. Thanks!
The easiest way is indeed to have an FTP access and edit the blog's theme directly (in /wp-content/themes/nameofyourtheme. Otherwise, you can also do it from the Admin panel. Go to Appearance, then click on "Editor". You'll then be able to edit all the theme's files.
Edit:
If you want to change the layout of the posts, the file you'll want to edit is single.php.
You can edit the site through the dashboard. When you are making a post you can change it to html and create your own things.
Unless there is a plugin for this. Which there might even be. But, since i have no idea and fast googling said nothing.
You will have to edit the theme files /wp-content/themes/Your-Theme/
You will have to take something like <?php comments_template(); ?> from single.php file and move it to index.php file somewhere after where you should find something like this <?php the_content(''); ?>
single.php Holds the article page.
index.php Holds the "home" page.
Is this hosted in wordpress.com?
In the control panel you can find Appearance > editor in there you can edit the files. Thought i think that it is very likely that you wont be able to save your edits due to file permissions.
Also if its a paid hosting they quite often send you these details on email.. I mean Ftp acc and pass.

Categories