Jump to content

newbie LAC

Members
  • Joined

Everything posted by newbie LAC

  1. Fixed.
  2. Confirmed. I'll fix it coming soon.
  3. Hello, Give me a link on problem page and show me ad settings.
  4. Hello, The widget would be show videos for new or edited posts.
  5. Hello, I don't have alot of topics. if you give me accesses I'll look into it. Otherwise I'll create topics for test.
  6. Hello, Give me a link on your forum. If it's private you can use PM. Edit. .cForumList li[data-categoryid="A"], .cForumList li[data-categoryid="B"] A and B are category ID. Insert advert after the chosen element(s)
  7. Hello, Have you made a fresh install? The upgrade does not fix the old settings. You need reinstall the plugin.
  8. Helllo, If you mean broken images I fixed and updated the file.
  9. Hello, Upgrade to 4.1.12.1 Bug has been fixed
  10. Hello, Confirmed. For some reason the system saved incorrect settings. It's IPS bug.
  11. @VR6Pete, I can't reproduce. Works fine on 4.1.12. If you give me accesses I'll look into it
  12. Hello, I just updated the forum to the latest version. I need some time to debug. Please wait.
  13. Hello, Ad related with css selector(s). I don't know what's "customer metrics". If you want clicks counter I can add. Inbuilt advertisiment system + css selectors + phpquery selectors 1. Define css selector. You can use firebug for this. 2. Define position 3. Go to ACP - System - Advertisements - Add advert - Fill all fields as you want - Show the advertisement. Check CSS selector. - Custom CSS and position. CSS selector .test. Position. Select position. See above screenshot. You can use support topic if you have any questions or problems. - Selector .cForumList - Position Insert advert after the chosen element(s) Result Define selector Firebug + phpquery selectors. Each post content code looks like <div data-role="commentContent" itemprop="text" class="ipsType_normal ipsType_richText ipsContained" data-controller="core.front.core.lightboxedImages"> <p> 0000000000000000000000000000 </p> </div> I used div[data-role="commentContent"] But ad show in each post. I need restrict that. I used div[data-role="commentContent"]:eq(0) 0 is 1st post Now ad show in 1st post. But I want show ad in 3 post also. I added separate by comma div[data-role="commentContent"]:eq(2) 2 is 3rd post. Total selector div[data-role="commentContent"]:eq(0), div[data-role="commentContent"]:eq(2) Position. I want add ad inside post content before text. I selected Insert advert inside the chosen element(s), at the start Put your code in HTML code field -> Define css selector -> Select position. Add ad after 1 and 3 posts - Selector article.cPost:eq(0), article.cPost:eq(2) - Position Insert advert after the chosen element(s)
  14. Support topic
  15. Hello, 1. Topic start date desc 2. RSS include topics only (first post content) without replies/reviews
  16. Hello, I have separate custom plugin made by request. Ad show inside the post above the text.
  17. Hello, Yes. No. In the top/bottom block looks like as in sidebar. It's not good. I restricted area. If you want test open xml file (or after install open plugins/nb40recenttopicsposts/widgets/nbRecentTopicsPosts.php) Find /* Only for sidebar */ if ($this->orientation != 'vertical') { return ''; } Change to /* Only for sidebar */ if ($this->orientation != 'vertical') { // return ''; }
  18. Hello, I can't reproduce. Have you installed latest version of plugin?
  19. newbie LAC replied to newbie LAC's post in a topic in Marketplace
    Hello, Fixed in v1.0.9. I need 5-10 minutes to update the file.
  20. Open xml file 'selector' => '.cAuthorPane_photo + li + li', 'type' => 'add_after', and 'selector' => '.cAuthorPane_photo + li', 'type' => 'add_after', change to 'selector' => '.cAuthorPane_info', 'type' => 'add_inside_end',
  21. Hello, Maybe.
  22. Hello, Used "read" permissions. Show me forum permissions.
  23. Hello, I updated the plugin. Please PM me. I'll send you new plugin for testing.
  24. Try to add css into widget plugins/nb40recenttopicsposts/widgets/nbRecentTopicsPosts.php /* Return */ return $this->output($topics, $posts, $selectedTab, $tabs, $firstTab, $this->configuration, $this->uniqueKey, $widgetTitle); change to $css .= <<<CSS <style> .ipsWidget[data-blockid*="_nbRecentTopicsPosts_"] li.ipsDataItem.ipsDataItem_unread .ipsDataItem_title:before { content: '\\f111'; font-family: 'FontAwesome'; font-size: 9px; margin-right: 3px; } </style> CSS; /* Return */ return $this->output($topics, $posts, $selectedTab, $tabs, $firstTab, $this->configuration, $this->uniqueKey, $widgetTitle) . $css;