pichichi
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Noindex all images below a subdirectoryI’ve never used that plugin but you should have robots.txt file, you just need to add this:
User-agent: * Disallow: /food/*/*.jpg Disallow: /food/*/*.png Disallow: /food/*/*.jpegInfo on adding a robots.txt file manually: https://developers.google.com/search/docs/crawling-indexing/robots/create-robots-txt
You can also use plugins to edit your robots.txt file.
Editing this file can obviously affect how your site is indexed on search engines, so I reccomend having a read here first about what it does (https://developers.google.com/search/docs/crawling-indexing/robots/intro)
Forum: Fixing WordPress
In reply to: Content coding on my website – a problem?Hey Danishsard, code like this “ć”?
These characters are converted to Unicode decimal format, so the above example is the letter ć. This is completly normal to see and you will notice it more often on sites using langages with accents. Non accented letters and numbers are not converted.
So for the word “pamiętać” this is converted to “pamiętać“
Sometimes other characters such as blank spaces are converted too.
Here is a comprensive list, the values on your site are in the decimal format and can be found in that column: https://en.wikipedia.org/wiki/List_of_Unicode_characters
Forum: Everything else WordPress
In reply to: Updating a WordPress plugin to a specific versionYou are welcome!
Unfortunatly your site did not load for me. You do not need to edit the PHP templates to do this in the7.
Please see the docimentation for your commercial theme:
Where to find the footer settings:
https://guide.the7.io/blog/user-guide/theme-options/bottom-bar/Branding:
https://guide.the7.io/blog/user-guide/theme-options/branding/The footer also accepts widget areas, you could check these if the above does not help.
Support is available from the product page where you purchased the theme on Envato.
Forum: Everything else WordPress
In reply to: Updating a WordPress plugin to a specific versionIf you go to the plugin homepage page on the WordPress.org repository and add
/advanced/to the end of the URL, scroll down and you can find a dropdown menu where you can download previous verisons. Then you can manually upload these to your site.For example, for Contact Form 7 this would be: https://wordpress.org/plugins/contact-form-7/advanced/
Every plugin author will reccomend you use the latest verison for good reason, but if you have to use an old version, a well maintained plugin will have a change log and should detail if velnerabilities were found in previous verisons and when they were fixed
Forum: Installing WordPress
In reply to: “source_id – Field must not be blank”Best to try the dedicated forum for the plugin: https://wordpress.org/support/plugin/give/
–
This is how I would nest the page structure:
– Home Page (Logo and button for each state)
|– Oklahoma (OK Nav)
|— About (OK Nav)
|— Meet The Team (OK Nav)
|— etc (OK Nav)
|— Contact (OK Nav)
|– Washington (WA Nav)
|— About (WA Nav)
|— Meet The Team (WA Nav)
|— etc (WA Nav)
|— Contact (WA Nav)You can nest pages with WordPress out the box so you have a nice URL stucture such as website.com/oklahoma/about and website.com/washington/about
You can create a menu for each location in the WordPress admin.
Then you just need to use a plugin to display conditional menus that will show depending on the current page, or create a child theme and code your own conditional statements in the header section.
- This reply was modified 3 years, 2 months ago by pichichi. Reason: Edited becuase the nested list block did not display nested
Forum: Everything else WordPress
In reply to: Why are people creating accounts on our websiteGo to Settings>General and untick the box that says “Anyone can register”.
You can then delete the users from the User page
Forum: Plugins
In reply to: [Contact Form 7] Drop-down menu linked to email.For example…
Form Tab
<label> Who Would You Like To Contact<br /> [select* your-field-name include_blank "Film Fest | filmfest@lloretnegre.com" "Literature | literature@lloretnegre.com" ]</label>Mail Tab, To Field
[your-field-name]Mail Tab, to display in the mesage body, the format is a little differnet
[_raw_your-field-name]Forum: Plugins
In reply to: [Contact Form 7] Drop-down menu linked to email.Yes it is a built in feature, see here: https://contactform7.com/selectable-recipient-with-pipes/
Forum: Developing with WordPress
In reply to: Customization of HTML code of a wordpress websiteAre you referring to the the colour of the links in the “Kategorien” block? If so you can use the following to taget them:
ul.wp-block-categories-list.wp-block-categories a { color: #0e3170; }Next thing I would try would be make sure .htaccess file is set up correctly for your new server. I would make a copy of the file to back it up, then try the code from the “Basic WP” codeblock on this page: https://wordpress.org/documentation/article/htaccess/
After that I would imagine look at the server itself and check I had set up virtual hosts for the domains
Fiirst thing I would try is head to Settings>Permalinks, change the permalinks to a different option, hit save, then change them back and hit save.
Forum: Fixing WordPress
In reply to: Plugin to Insert Photos into a Frame/ShapeThe link doesn’t work for me, but if you google “CSS image masks”, do some of the image results look like the kind of thing you are trying to achieve? If so search for a plugin that supports “image masks”. I found this one but I can’t voich for it: https://wordpress.org/plugins/wp-image-mask/ .
I know some commercial themes have user friendly ways of placing masks on images, such as Divi, which I have used.