dimitris33
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar copy in search results.>Is there a way to make the copy from the text widgets display in the search results?
not that i know of
i dont know how your seo plugin works, if you want an excerpt, a description in google search results all your pages must have a meta tag with description
Forum: Fixing WordPress
In reply to: Permalink problem in Rich SnippetsI am sorry could you give an example of what you are expecting to see?
Forum: Fixing WordPress
In reply to: Customizing the mediaelement video playerusing the 2016 i tried this and it works
function add_extra_settings($mejs_settings) { $extra_settings = array( 'loop' => false, 'startVolume' => 0.1, 'videoHeight' => -1, 'alwaysShowControls' => false, 'features' => ['playpause','volume'], ); // combine the two arrays $mejs_settings = array_merge($extra_settings, $mejs_settings); return $mejs_settings; } add_filter('mejs_settings', 'add_extra_settings',9999);https://pippinsplugins.com/a-quick-introduction-to-using-filters/
Forum: Fixing WordPress
In reply to: User capabilities and restrictions…Hi, i think you are looking for a plugin like this https://wordpress.org/plugins/user-role-editor/ or similar.
Forum: Fixing WordPress
In reply to: Won't load website properlyProbably you fixed it, i don’t see any issues
Forum: Fixing WordPress
In reply to: Permalink problem in Rich Snippetscould you give some examples of the urls + rich snippets?
Forum: Fixing WordPress
In reply to: Each blog post now links back to blog homepageHi, you can check for any plugin that does that or your htaccess?
Forum: Fixing WordPress
In reply to: Plugins have just disappearedIn my opinion it is really difficult for things to disappear.I would ask for admin access and re install the plugins.
Forum: Fixing WordPress
In reply to: Enquiry to share on facebookYou can try using the Yoast plugin for sharing on facebook.
Forum: Fixing WordPress
In reply to: Need help : have messed with my Template setingsPlease check this https://codex.wordpress.org/Changing_The_Site_URL
Forum: Fixing WordPress
In reply to: Confusing registration dialogsThis is probably an issue with your theme or site setup, you can contact your developer to help or your theme author.
Forum: Fixing WordPress
In reply to: How remove Home From title from home pageI think the easiest way to control your titles is using the Yoast plugin
Forum: Fixing WordPress
In reply to: A couple questions since the recent updateYou probably need to update the theme (parent as well) and maybe your child theme too
https://wordpress.org/themes/gravit/
for support for a theme found in this site it is always better to create a thread in the theme’s forums.
even with a child theme there are times you need to update your code because of inherited changes.
Forum: Fixing WordPress
In reply to: Customizing the mediaelement video playeri found this and the option for fullscreen is not supported (by default at least)
Forum: Fixing WordPress
In reply to: Customizing the mediaelement video playeri see, are you adding an uploaded video or a url link?
i dont have any experience on the subject but i may find something to help.