Graham
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP site doesnt load formatting 50% of the timeThis sounds like it could be a theme issue but I’m not 100% Lawbrax. I would suggest trying another theme (a free option like 2016 or some other from the theme directory) and see if the problem persists. I was unable to get the issue to occur.
I tested the site on GTmetrix and it looks good
If the theme swap does not work, try out some trouble shooting steps and see if you can locate the bug that way: wpbeginner.com/beginners-guide/beginners-guide-to-troubleshooting-wordpress-errors-step-by-step/
Forum: Fixing WordPress
In reply to: Shopping cart redirects to wrong pageI highly recommend contacting the Theme Isle folks and checking in with them. It sounds like there may be an issue with that link in the theme’s header/navigation. Helping them identify the problem would in turn actually help a lot of other people.
FAQ: https://themeisle.com/faq/
Contact: https://themeisle.com/contact/
Forum: Fixing WordPress
In reply to: I changed the locale but I don’t see any change on the front endBeautiful photography.
I was able to change the language on your site with the tool in the upper right hand corner by changing the flag from English to Espanol. Are you referencing the “Settings” -> “General Settings” -> “Site Language” ?
If you are trying to change the language of the WordPress interface, check this out and see if it helps: https://en.support.wordpress.com/language-settings/
Forum: Fixing WordPress
In reply to: Dynamic content with WordPress and ElementorHello Aardo. You could use WordPress’s categories (organization of posts) to display a category (which you could assign to the artist) and east post would need to be tagged under that category (again, artist). Then you could set each artist’s page to the archive page. If you wanted to display the artist picture and bio, you would have to alter the “archive.php” in the theme to reflect that – which is a bit more advanced. That is the plain and simple way of going about your quest with WordPress alone.
This would help you do the above: https://www.wpbeginner.com/glossary/category/
I’m unfamiliar to the Elementor page build and could not comment on that approach. If there is an image (I’m thinking pics of artists) grid tool you could use to link to a page, and then on the page just display their artwork, that would be a simple way too. Good luck.
Forum: Fixing WordPress
In reply to: Admin edit or create a page without parent page choice?Both links seem to go to internet provider service pages.
And you’re welcome for my hot heart? Thank you for your wild feet!
Forum: Fixing WordPress
In reply to: how do i create bootstrap carousel sliderAre you able to edit the page’s template Shai? If so, you can implement the code into that template. If you’re not familiar with editing templates, you can get started on theme editing here:
https://developer.www.ads-software.com/themes/
and here is a link to bootstrap’s carousel:
https://getbootstrap.com/docs/4.1/components/carousel/
Hope this helps : )
Forum: Fixing WordPress
In reply to: Error Establishing a Database ConnectionBana g?re, veri taban?n?zla ilgili bir ?eyler olmu?. Veritaban?n?z? veya sitenizi yedeklediniz mi? ?imdiye kadar “sabit” olan ?ey veritaban?na bir ?ey yapm?? olabilir. Hatalar tablolara i?aret ediyor, bu yüzden sorunun oldu?u yer buras?.
Forum: Fixing WordPress
In reply to: Admin edit or create a page without parent page choice?Could you please provide a link to the site in question? I will look at the errors thrown and advise if I can.
Forum: Fixing WordPress
In reply to: Adding Unique Random Number in PermalinkYou can set your permalinks to “Numeric” -> from your dashboard, go to Settings -> Permalinks -> and there is a radio button for “Numeric”
For SEO purposes, I advise against this though.
Forum: Fixing WordPress
In reply to: How to change the color of hyperlink?Browser took control of edit:
.post_content p a { color: #11199c; /*This will only control links within a paragraph*/ } .post_content h1 a { color: #000000; /*this will control all links within h1 headers*/ }
More info on inheritance with CSS:
https://developer.mozilla.org/en-US/docs/Web/CSS/inheritanceForum: Fixing WordPress
In reply to: How to change the color of hyperlink?Yes.
.post_content a { color: #11199c; } .post_content h1 { color: #000000; }
You will need to add that style to each element you would like to target. I would suggest grouping the selectors (more on that here: https://www.thecodingguys.net/tutorials/css/css-grouping-and-nesting-selectors).
Hope that helps
- This reply was modified 5 years, 10 months ago by Graham.
Forum: Fixing WordPress
In reply to: Themes or plugins for multi vendor websiteHi there!
You’ll find a lot of themes in WordPress’ catalog: https://www.ads-software.com/themes/You can also find some solutions online at Theme Forest: https://themeforest.net/
For plugins, again, you can find WordPress’ catalog here: https://www.ads-software.com/plugins/
You’ll also find some plugin solutions on Theme Forest as well. Or you can hire someone to help you out and customize the site. Let them know the specific needs of your project and try to really map out what suppliers can and cannot do.
Forum: Fixing WordPress
In reply to: Migrating: Manual vs. Duplicator vs. cPanelI like Steven’s answer. Please do that if able.
If you would like to try All-In-One Migration (plugin) it’s worth the effort. You will still have to use Steven’s #5 for replacing domain strings.
Link to plugin mentioned:
https://www.ads-software.com/plugins/all-in-one-wp-migration/
Forum: Fixing WordPress
In reply to: How to change the color of hyperlink?Howdy Capri,
You have your links styled (on your style sheet / line 274) to black:.post_content a {
color: #000;
}You can set that code to #11199c or whatever blue you choose.
Forum: Fixing WordPress
In reply to: What is the best way to create cooperation environment?I do not use collaboration environments on a regular basis, but typically people use GitHub, which is a system for version control and project development.
If you would like to make a wordpress site and then have people help with editing the content (blog posts, adding content, editing in general) you can add users to your WordPress site and set their limits in the user panel (left hand side of the dashboard towards the bottom).
I do not suggest merging databases. You can add new records though, and do it that way.
Let me know if either of these suggestions is NOT what you are looking for.