Marcus Spanier
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Updated to 3.8 – Google Map now missingHave the same problem.
The google map link in the eventdetail (frontend) is okay.
I subscribe this thread.
One Option was deleted after Upgrade. In the Pluginoptions, you must go some steps back and check the option “show on the bottom of posts” or something like that. After making this checkbox active the error was solved.
You only need to check your options carefully & attentively.
Thats all.I had the same problem, but i solved it.
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Nothing changed in my menuHi Peter.
Thanks and i thought this little CSS will improve your great plugin.
I’m from germany and one of the www.ads-software.com forum moderator’s and i like to help, when i have time for. ??greetings and keep up the great work
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Nothing changed in my menuHi Peter,
i have only one CSS suggestion. (hope you understand the following with my bad english skills) ??
I have the menue structure:
– A
— AA
— AB
– B
— BA
— BB
– C
– Dwhen i make a background color for the current page the follow thing happened. i am on the “B” Site and the background from BA and BB are changing too. (they take the background color for current page)
the problem is your CSS Syntax:
#responsive-menu .responsive-menu li.current_page_item a { background: #666666; ... }
with this syntax you say that every “a” in the hierarchy after the current_page_item changes the background-color.
i changed the colors for myself in my own CSS and now it works fine now.
for example you can see my changes in the firebug: https://www.ferienwohnung-nahe-ostsee.de/ferienwohnung-rostock-schwaan-mecklenburg/so my proposal for your css code is the following:
#responsive-menu .responsive-menu li.current_page_item > a { background: #666666; ... }
i think you know the ” > ” selector. i will only make this link for others, who find this thread. https://css-tricks.com/child-and-sibling-selectors/
hope you understand all?
Marcus
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Nothing changed in my menuHi Peter,
i upgraded to the new version and everything works fine now.
I think there was some problems with javascript and i didn’t find out the real problem. Maybe a problem with a lazy image load plugin. Finally i deactivate it.Site: https://www.ferienwohnung-nahe-ostsee.de
Great plugin. Thanks for the hard work. ??
@shahadatuk: Did you make all the changes in then options panel of the plugin? It seems that you didn’t specify in the options which menue do you want to replace with the responsive one.
Marcus
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Nothing changed in my menuI have the same error. Nothing changed in the Menü.
I make this reply to follow this thread.
Forum: Plugins
In reply to: [Responsive Select Menu] Links do not work on I-phoneHi,
i was testing some things and i think i solved the problem.
In the Options (i use not the ubermenu) “UberMenu Configuration” i make:
Exclude Non-links -> OFFIt seems to work. This is an Ubermenu Option, but i doen’t have the Ubermenu.
Is it solved with this solution on your Website and on the i-phone?
Forum: Plugins
In reply to: [Responsive Select Menu] Links do not work on I-phoneHi,
have the same Problem in i-phone Users
Forum: Plugins
In reply to: [Update Control] Themes and OthersThanks for the answer.
Forum: Developing with WordPress
In reply to: Multiple taxonomy with next_post_linkare you serious?
this is not WordPress?
Do you think i only wait the hole day in this forum to help people.
please read this: https://codex.www.ads-software.com/
Forum: Developing with WordPress
In reply to: Multiple taxonomy with next_post_linkHi. I really doen’t understand all your problems.
You can take this to generate a link to a post:
<a href="<?php the_permalink(); ?>Read more ...</a>
In your code (https://www.ads-software.com/support/topic/multiple-taxonomy-with-next_post_link?replies=13#post-3931745) is a permalink in line 15. The Excerpt is in the “” and the “” Tags
And only can guess that you will do this? I think this is the solution:
<?php /** * @category Fishpig * @package Fishpig_Wordpress * @license https://fishpig.co.uk/license.txt * @author Ben Tideswell <[email protected]> */ ?> <?php $posts = $this->getPosts() ?> <?php if (count($posts) > 0): ?> <div class="block-content"> <?php foreach($posts as $post): ?> <?php $post->setExcerptSize($this->getExcerptLength()) ?> <?php if ($this->canDisplayExcerpt()): ?> <p class="post-excerpt"> <?php $content = $post->getPostExcerpt(); $content = strip_tags($content); echo substr($content, 0, 250); ?> </p> <p style="text-align: right;"><a href="<?php echo $post->getPermalink() ?>">Read more</a></p> <?php endif; ?> <?php endforeach; ?> <script type="text/javascript">decorateList('<?php echo $this->getListId() ?>')</script> <?php if ($this->canShowPager()): ?> <?php echo $this->getPagerHtml() ?> <?php endif; ?> </div> <?php endif; ?>
Forum: Developing with WordPress
In reply to: Multiple taxonomy with next_post_linkTry this:
<?php /** * @category Fishpig * @package Fishpig_Wordpress * @license https://fishpig.co.uk/license.txt * @author Ben Tideswell <[email protected]> */ ?> <?php $posts = $this->getPosts() ?> <?php if (count($posts) > 0): ?> <div class="block-content"> <?php foreach($posts as $post): ?> <?php $post->setExcerptSize($this->getExcerptLength()) ?> <?php if ($this->canDisplayExcerpt()): ?> <a href="<?php echo $post->getPermalink() ?>"> <p class="post-excerpt"> <?php $content = $post->getPostExcerpt(); $content = strip_tags($content); echo substr($content, 0, 250); ?> </p> <p style="text-align: right;"><?php the_content('Read more...'); ?></p> </a> <?php endif; ?> <?php endforeach; ?> <script type="text/javascript">decorateList('<?php echo $this->getListId() ?>')</script> <?php if ($this->canShowPager()): ?> <?php echo $this->getPagerHtml() ?> <?php endif; ?> </div> <?php endif; ?>
Forum: Developing with WordPress
In reply to: Multiple taxonomy with next_post_linkSorry. i am not an english speaking person and i doen’t understand
“tripled” comments for code box
Forum: Developing with WordPress
In reply to: Multiple taxonomy with next_post_linkHi kabbo21.
There is something wrong with your Code in Line 15.
ThatgetPermalink() ?>">
doesn’t work.Please look in your Codeeditor at this Line.
Second: You should make a link to your post like this:
<?php the_content('Read more...'); ?>