Phillip
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Catch all posts on main blog?Our post images usually come across with the feed but Featured Images usually need to be set for each post.
Forum: Networking WordPress
In reply to: Multisite Non Admins can see everyones sites “My Sites”First, make sure none of the users are Super Admins. This is easy to do from the Network Users screen (My Sites > Network Admin > Users). Then remove users from any site they aren’t supposed to see. It’s a lot of manual, site-by-site work but the only other option is to delete everyone and re-add them back to only the sites they are supposed to see.
Forum: Networking WordPress
In reply to: Catch all posts on main blog?At my work we do something similar to this with a plugin called FeedWordPress (https://www.ads-software.com/plugins/feedwordpress/) and combine that with the feed urls (add /feed/ to the end of your main URL for each site to view) but you can use any RSS feed you may want to use. I’ve seen examples of this plugin using Feedburner too. It may not be a complete solution but it might get you pointed in the right direction.
Forum: Networking WordPress
In reply to: Change or Update content on MultisiteHello,
You’ll need whoever has Super Admin access to make you a Super Admin as well.
https://codex.www.ads-software.com/Roles_and_CapabilitiesForum: Themes and Templates
In reply to: Need to change "button" colorsYour theme also has a support page here:
https://themeforest.net/item/avada-responsive-multipurpose-theme/2833226/support
Forum: Themes and Templates
In reply to: Need to change "button" colorsGive this video a view as well. It goes a little more in depth on how to use the different options available in your theme. Including how to edit buttons.
Forum: Themes and Templates
In reply to: Need to change "button" colorsIt looks like you’re using the Avada Theme. The theme developer has a short tutorial video on shortcodes for this theme. Shortcodes are how you create and control buttons with Avada. You might not be able to change the font here but that is easy enough with a short snippet of custom CSS.
Forum: Themes and Templates
In reply to: Can I make multi clickable links in one image?It’s definitely something a beginner can do with some practice. Hand coding one is a bit trickier than using a plugin, but not super difficult. Here are a couple of free resources on how to do it by hand:
Making a map: Map Tag Tutorial
Using the map you make: <img> usemap AttributeWhenever it’s possible, I try to use a well-maintained plugin vs hand coding. It makes it easier to implement and troubleshoot whatever you’re trying to do.
Forum: Themes and Templates
In reply to: Need to change "button" colorsCan you give more detail? Maybe a link to your site or some other way to specify where these changes need to be made?
Forum: Themes and Templates
In reply to: Can I make multi clickable links in one image?You need to create an image map. Here are some plugins to accomplish this.
Forum: Themes and Templates
In reply to: deactivate post fieldsGreat to hear you got a fix. Thanks for the follow up.
Forum: Themes and Templates
In reply to: deactivate post fieldsAre you talking about the “/?page_id=##” in the URL for each menu item? If so, go here:
Einstullungen > Permalinks
Then change to the appropriate setting. Most people will use
Beitrasgsname
orMonat und Name
.If this is not your issue, please explain further and I will try to give a better answer. While I don’t speak German, I have a German site I maintain and can find the correct menu names to guide you where you need to make changes.
Forum: Networking WordPress
In reply to: Multisite – users doesn't have correct capabilitiesIs this issue still open? If not, would you mind closing it please?
Forum: Fixing WordPress
In reply to: First ever website. Need help with breadcrumbs removal.Would you mind listing this post as “Resolved” if your issue has been resolved?
Forum: Fixing WordPress
In reply to: Indenting Lines in a pageInstead of using an inline style, you might be better served to add the following to your custom css stylesheet:
p {text-indent: 20px;}
This should indent every paragraph and be more easily controlled than inline styles.