wptestert
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Links] It's compatible with WPML?de nada, whenever I am in Alicante I ll drop by for a good glass of wine ??
Forum: Plugins
In reply to: [Simple Links] It's compatible with WPML?Hi Kavik,
Yes, find this line (189) in /includes/SimpleLinksFactory.php :
$this->query_args[ 'post_type' ] = 'simple_link';
underneath that line, paste this:
// this line makes it WPML compatible $this->query_args[ 'suppress_filters' ] = false;
that’s it!
The links in the widget will only appear in the right language.
Forum: Plugins
In reply to: [Simple Links] It's compatible with WPML?Hi,
I had the same problem, and I made it compatible with wpml,
I can contribute in github when I have time,
but it is just a small change in the code, so if you are interested please let me knowForum: Plugins
In reply to: [Event List] URL IssuesRead this and download the mentioned search & replace script,
https://dustyf.com/blog/2013/03/13/change-all-wordpress-urls-site-migration/
when running the script, replace all instances of
websitesbydom.com/mitchellact
to
mitchellact.org
Forum: Plugins
In reply to: [Galleria] Custom URL for ImagesThere is a plugin for that, download here: https://galleria.io/download/
and put the folder “history” in the “plugins” folder of the galleria files,Then, in the header.php before the body, insert this (yourwebsite.com is the url of your wordpress site)
<script type=’text/javascript’ src=’https://yourwebsite.com/wp-content/plugins/galleria/galleria/plugins/history/galleria.history.min.js’></script>
Forum: Plugins
In reply to: [Event List] Font sitze and headline in "detailed information"Put this in your css: (change 18px to your liking)
.event-title h3 {font-size:18px;}
Forum: Plugins
In reply to: [Event List] Bullets above each eventThis is not related to the plugin in, but the style of your theme,
put
.entry li.event {list-style-type: none!important;}
in your style.css
Forum: Plugins
In reply to: [Event List] Mobile Responsive?with a couple of css lines you can make it better responsive:
li.event { width: 100%; } .event-date { float: left; margin: 0 0em 1.5em 0; width: 20%; display: inline; } .event-info { margin: 0 0 0 1em; float: left; width: 80%; display: inline; } @media screen and (max-width:767px) { .event-date { width:98%;} .event-info { width:98%;} }
Forum: Plugins
In reply to: [Event List] div sizes don't add upyour theme is setting paddings in the widget divs:
#sidebar ul li ul, #sidebar ul li div { margin-bottom: 5px; padding: 10px; color: #222; }
try adding this:
#sidebar ul li div.event-list, #sidebar ul li div.event-list div {
margin-bottom: 0px !important;
padding: 0px !important;}`
Forum: Plugins
In reply to: [Event List] Event title's link to another pagenot an inbuilt functionality,
only external link possibility is filling in the url in the description field.Of course there is always a way, but requires modification of the plugin.
This plugin creates its own table,
Include a new field “url” in the table, and in the scripts, if there is a value, link to that url instead of to the eventpageForum: Plugins
In reply to: [Event List] Remove submenu arrow in widgetit’s the style of your theme, put this in your css:
.widget ul li.event:before { content: normal; }
Forum: Plugins
In reply to: [Event List] weird blank spots on page above and below entrieshttps://fayeberger.com/wp-content/themes/NatureWPTheme_v1.8/css/bootstrap.css
But I would paste this in any stylesheet to overrule bootstrap.css: (or better, remove the
<code></code>
tags )code {
padding: 0px 0px !important;
background-color: transparent !important;
border: 0px solid #fff !important;
}Forum: Plugins
In reply to: [Event List] weird blank spots on page above and below entriesThe tags are removed in my previous post, I am talking about these tags:
<code></code>
Forum: Plugins
In reply to: [Event List] weird blank spots on page above and below entriesYou use the
tag there,
In your bootstrap.css there are these styling rules:
code { padding: 2px 4px; color: #d14; white-space: nowrap; background-color: #f7f7f9; border: 1px solid #e1e1e8; }
Either remove the
tags or remove the styling applied
Forum: Plugins
In reply to: [Event List] Remove 'year' from the Date Shownyou can do that without editing the code, just place this in your event-list.css:
.event-year { display: none !important; }