sinitita
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [onetone] Video controls disappearedI have a similar problem. Sometimes the controls show, sometimes not, especially after reloading the page, but sometimes also upon first loading.
Also, the video is cut vertically, thus I never can see the time bar (I suppose there is one). My site is still not online, here is a link to a screenshot: https://www.pkg-berlin.de/privat/screenshot_video.JPG
As you can see, the subtitles of the video below are cut.
Did I miss something in the video settings?Thank you! I will try!
Forum: Fixing WordPress
In reply to: Display of plugin list in backend brokenThanks to your reply!
I will give this a try as I don’t want to disable all plugins or switch to standard theme right now (I have upcoming events scheduled for next week in my calendar and an online petition running, both bringing loads of folks from facebook to my site at this moment).
Forum: Plugins
In reply to: [Simple Download Monitor] Force download of PDFI am trying to do the same thing, but am not very familiar with setting up .htaccess file. Where do I need to put the
AddType application/octet-stream .pdf
part?
My .htaccess file looks like that:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Do I have to put it inside the
<IfModule>
part?- This reply was modified 7 years, 7 months ago by sinitita.
Forum: Plugins
In reply to: [EventCalendar] Event Organiser shall not be clickableHow can I get Pro support? I have the pro version of the plugin and need help with my question to disable the links!
Thank you for taking your time and for the link!! Will check it out.
Forum: Plugins
In reply to: [EventCalendar] Display event categories with description and category imageYes I know that the plugin uses wp taxonomies and I basically know how to use custom taxonomies. Could you please give me a hint where to start if I want to behave the ‘event-category’ slug just as you have realized it for the ‘organizer’ and ‘venue’ slugs? E.g. a list of ALL categories (not events of a specific category).
I also thought you had an idea in mind when you created the possibility to upload category images. So for what are they if they can’t be displayed within the product?
Forum: Plugins
In reply to: [EventCalendar] Move content in event postsJust checked my email, but nothing. My ticket number is 10071.
Forum: Plugins
In reply to: [EventCalendar] List of eventsThanks for the answer.
I have realised it via css now using the following code:
.ecwd-page-list .calendar-head { display:none; }
Sure, this only makes sense if you don’t want to offer the visitor to see any other events than those of the current month.
And it only makes sense if list view is the only one selected.
Forum: Plugins
In reply to: [EventCalendar] Move content in event postsI would also be intested in this and have sent an email. If I set up the changes in a child theme, will they still be lost upon update?
Forum: Plugins
In reply to: [EventCalendar] List of eventsFirst of all, thanks for this great new plugin. I appreciate the clean design of the themes. Thinking of purchasing PRO for a clients’ website after testing.
I like the idea of Option 2 because I don’t like the header part in the list view. I don’t need the part with the arrows and being able to switch the months, just a list of events, let’s say 5, and a possibility of a previous and later button…
But with this option all calendar functionality is lost, no venue, no date of the event, no map…
Here is a screenshot of my test to show what I mean: https://bit.ly/1LAN7nAIs this the way the events archive should work or is there a possibility to maintain the calendar with the look of the theme and all information?
Forum: Plugins
In reply to: [Event List] Show past events in the widgetI refer to the original question on how to use past events in the widget. I can’t find a way to put the shortcode in the widget’s settings. Appreciate some hint.
Forum: Themes and Templates
In reply to: [Custom Community] Dublicate site name in Title@w0lf – thanks for having a look on it, didn’t dig into the extras.php ??
I will have to give it a try on my project…Forum: Themes and Templates
In reply to: [Custom Community] Dublicate site name in TitleGood for you, I have the problem without SEO plugin *sigh*
Forum: Themes and Templates
In reply to: [Custom Community] Dublicate site name in TitleI have the same problem – or even worse: In my source code the title tag is created twice PLUS that each title tag contains the site name and site description twice! Looks like that:
<title>"site_name" | "site_description""site_name" | "site_description"</title> (... some link rel stuff...) <title>"site_name" | "site_description""site_name" | "site_description"</title>
I’m not sure if it’s a problem of Costum Community – on the other hand in my case I don’t use any SEO plugin so far.
header.php gives the following code:
<title><?php wp_title( '|', true, 'right' ); ?></title>
which doesn’t explain
a) why the title and description are given twice
b) why the title tag is generated twice.For a test I met plain text inside the title tag in header.php. This will change the first title tag, but the second is remaining.
Putting
<title><?php wp_title(); ?></title>
won’t do any changes.Any ideas out there? I can’t give my example now because I have the interims plain text solution.