Is possible to remove the bottom links in a WP theme? - wordpress-theming

I am new to Wordpress, I am installing my first wp blog http://www.harobmxbikes.net/nanoc3/?p=1 , Is possible to remove the bottom links in a WP theme? Thanks in advance!

Of course it is possible as they are just HTML templates.
However, people have put time and effort into building these templates for you to use and it would be unethical to remove the links that credit their work.

You can download the wp php file from FTP, modify the template, and re-upload again, by doing so, you can remove those links. :)

Related

Grav CMS editor plugin for html tags as short codes in drop down menu (admin

I am wondering if there is any similar approach or plugin for Grav CMS as the one below for Processwire:
https://processwire.com/modules/process-hanna-code/
It fits fantastic for our setup. In another project based on Grav, we would need the same function now:
A drop down menu in the admin backend, where you edit page content, to include short codes. These codes represent html tags fetched via script from a remote API.
For now I just found this Plugin: https://getgrav.org/premium/nextgen-editor. I m not sure if it does the trick. We basically need just support for short-codes.
Does anyone know some plugins for Grav to achieve this? Thanks in advance for any hints.
Best, Markus

How to use a external css file in my blog page in google blogger?

I have a blog site # google's blogger. Now I want to add my own styles in my pages. I have sufficient CSS knowledge to do this. But the problem is how do I save a css file, link it to my page and use in Google blogger it?
Note: I do not need to edit the blog template. I just need to add new styles to my page. E.G. : I need to create a code block by using codeBox class in my external style sheet file.
Sorry, but i don't think you actually can't, google Blogger uses their own GUI and its made for people who don't really know how to code (that's one of the purpose of blogs).
I recommend you to host your site either on GitHub or you could host your own site vía a custom host.

Edit Content of website without opening HTML file

is there some other way to edit or change some text or pictures on my website using it's interface or not from the HTML file, cause my client is wondering on how can day update the "Events" Box(they don't know how to use HTML) i'm really new at this and open to any suggestions, thank you
It depends on what you are using. if you are using a CMS based program that would be possible.
you cannot edit a page without opening its files right of the browser without any external help.
It seems that you want to edit the content of your website. Yes, its possible without opening any file using your CMS Dashboard. If the content is static then you have to open the php/html file.

How to include contact form in sidebar or footer? Use Php?

I need to include a simple contact form in either the sidebar or footer of an existing website so it appears on every page.
This is not a WordPress site, I have seen there are several plugins for WordPress. I need a different solution. I am thinking a php include would be my best option. However, I am very new to php. Can someone out there point me in the right direction? Any advice would be much appreciated.
I have searched all day and have yet to find a good solution.
You can try writing something like:
<?php include("form.php"); ?>
right into the html. If you're new to php, you just need to be sure php is enabled on your server [talk to web host] if not sure.
The form.php file is actually just a file withe .php on the end of filename rather than .html
In the file, it will just have your html for the form. I don't know if this is the most-legit way to do it, but it's functional. [I'm learning php myself]

Getting plain HTML/CSS versions of Wordpress themes, no PHP?

where can I find elegant looking Wordpress (or not Wordpress, but similar style) themes in plain HTML/CSS format, without all the php?
thanks.
View the page source of the theme preview page in your browser. Save the code.
Easy for one page. Difficult for many pages.
You need to see in browser each page you want to get the HTML/CSS.
Firefox Menu > View > View Source
IE Menu > View > Source
A good way not only to save but to study the design and HTML/CSS structure,
use FireBug, Firefox addon. I am very sure it save lots of time and you will love it.
I'm not sure what you mean in your question.
If you mean, "Are there themes for Wordpress that don't require php?" then the answer is no. However, you don't actually need to know php in order to use these themes. You can just load them and then alter only the CSS.
If you mean "How can I adapt a Wordpress theme for a non-Wordpress site?" then you'll have to do this yourself, manually. First make sure you are using Firefox and install Firebug. Go to a site that has the theme that you want and then open up Firebug.
Under the HTML tab you'll be able to see the static HTML of the page, after it has been processed by the backend PHP. Just click "Edit" and then copy and paste everything in there into a new file. Then click the "CSS" tab and go through each style sheet, again clicking on Edit in order to copy and paste everything into new files, 1 for each sheet. Then stick all of the files into a folder and edit the header of the html file to make sure the external stylesheet links are pointing to the stylesheets you have created. Open it up in a browser and it should look just as you want it to.