Recent Posts

Pages: 1 ... 8 9 [10]
91
Alpha Osclass Theme / Alpha theme major release!
« Last post by MB Themes on March 31, 2025, 03:12:14 PM »
Major theme release.
Theme has been redesigned, got adjusted colors, fonts, styling, new category icons, various layout elements, removed legacy functionality.
Implementation of new Osclass 8.3 features like filtering user items or public profile items.

https://alpha.mb-themes.com/
92
In deinem Fall ist das Zeta-Theme ebenfalls vollständig anpassbar.
93
Osclass themes are fully customizable, allowing you to tweak every detail to fit your needs. Whether it's the design, layout, or functionality, you have the flexibility to create a website that perfectly aligns with your vision. It's all adaptable to suit your preferences!
94
General discussion / Re: epsilon theme performance
« Last post by Rhys Davenport on March 31, 2025, 01:47:22 PM »
Osclass themes may require quite a bit of customization, but in the end, they are highly functional and SEO-friendly. With a solid foundation, Osclass provides excellent tools to create a powerful, well-optimized website. It's a great choice for anyone looking to build a classified ads site with ease and efficiency!
95
General discussion / Re: epsilon theme performance
« Last post by Rhys Davenport on March 31, 2025, 01:44:01 PM »
Osclass themes are provided as base templates that users need to customize and optimize themselves. So don’t worry—you can make your theme as unique as your favorite coffee… with extra foam and maybe a cookie on the side! 😄








96
Zeta Osclass Theme / Re: could you suggest how to put the car attributes
« Last post by elotbaba on March 31, 2025, 10:32:21 AM »
Yea, it may not be an easy tax, but how can this be done, all those attributes filters are what makes a classified marketplace a topnotch
97
https://docs.osclass-classifieds.com/query-items-custom-listings-select-i86

Code: [Select]
<?php
   osc_query_item
(array(
    
"category" => 4,
    
"order" => "RAND()"
  
));
?>

This might work until there is filter that check if RAND() is allowed.
98
General discussion / Re: Alpha & Beta testing - comments, feedback, questions
« Last post by Lopetoms on March 31, 2025, 08:57:16 AM »
domain/oc-admin now error

Server Error
502
Bad Gateway
Web server received an invalid response while acting as a gateway or proxy server.

https://prnt.sc/gpeWYCMGdWXg
99
NO this SMS for service number in this time this SMS no use i think this need remove or change for whatsapp icono
100
Hi - I saw a topic here on the forum about displaying ads by category
I put it on my website's home page and I liked it.
But every time I access the website, it only shows the same ads
from the same store.

How can I add randomization to these ads?
-------------
1) get listings into memory:

<?php
   osc_query_item(array(
    "category" => "4"   
  ));
?>
------------
2) show listings:

<?php
while(osc_has_custom_items()) {
  echo osc_item_id();
}
?>
===============
This is mine and it worked but the code doesn't do random

 <?php osc_query_item(array("category" => "3", "results_per_page" => "4")); ?>
 <?php View::newInstance()->_exportVariableToView('', veronika_random_items()); ?>
       <?php if( osc_count_custom_items() > 0) { ?>
            <div class="wrap" style="margin:-30px 0 -20px 0;">
              <?php $c = 1; ?>
             <?php while( osc_has_custom_items() ) { ?>
                <?php veronika_draw_item($c, 'gallery'); ?>
Pages: 1 ... 8 9 [10]