Everything posted by newbie LAC
-
(NB41) Enhanced Advertisements
Fixed.
-
(NB41) Enhanced Advertisements
Confirmed. I'll fix it coming soon.
-
(NB41) Enhanced Advertisements
-
(NB41) Enhanced Advertisements
Hello, Give me a link on problem page and show me ad settings.
-
(NB41) Recent Posts With Youtube Videos
Hello, The widget would be show videos for new or edited posts.
-
(NB40) Recent Forum Images (Attachments)
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.
-
(NB41) Enhanced Advertisements
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)
-
(NB40) Recent Forum Images (Attachments)
Hello, Have you made a fresh install? The upgrade does not fix the old settings. You need reinstall the plugin.
-
(NB41) Enhanced Advertisements
Helllo, If you mean broken images I fixed and updated the file.
-
(NB40) Recent Forum Images (Attachments)
Hello, Upgrade to 4.1.12.1 Bug has been fixed
-
(NB40) Recent Forum Images (Attachments)
Hello, Confirmed. For some reason the system saved incorrect settings. It's IPS bug.
-
(NB41) RSS Feed - ALL Forum Topics
@VR6Pete, I can't reproduce. Works fine on 4.1.12. If you give me accesses I'll look into it
-
(NB41) RSS Feed - ALL Forum Topics
Hello, I just updated the forum to the latest version. I need some time to debug. Please wait.
-
(NB41) Enhanced Advertisements
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)
-
(NB41) Enhanced Advertisements
Support topic
-
(NB41) RSS Feed - ALL Forum Topics
Hello, 1. Topic start date desc 2. RSS include topics only (first post content) without replies/reviews
-
(NB40) Ads After X Posts
Hello, I have separate custom plugin made by request. Ad show inside the post above the text.
-
(NB40) Recent Topics/Posts
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 ''; }
-
(NB40) Secondary Group Icons
Hello, I can't reproduce. Have you installed latest version of plugin?
-
(NB40) Pinned Posts
Hello, Fixed in v1.0.9. I need 5-10 minutes to update the file.
-
(NB40) Secondary Group Icons
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',
-
(NB40) Recent Topics/Posts
Hello, Maybe.
-
(NB40) Recent Topics/Posts
Hello, Used "read" permissions. Show me forum permissions.
-
(NB40) Attachment Hits Counter
Hello, I updated the plugin. Please PM me. I'll send you new plugin for testing.
-
(NB40) Recent Topics/Posts
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;