Forum Replies Created
-
Mobile app.
Browser only websites are dying, slowly. Can you imagine discord, telegram etc without a mobile app?
I am working on a wordpress theme that focuses on being a bridge for headless wordpress + https://quasar.dev
I believe BuddyPress can be ground breaking for any mobile app that built with WordPress.
Meh.. i couldnt find an example even in internet lol. Please can you give an example?
Erlend, i would suggest you to wait commercial release for group customization. I am preparing those content blocks to work in user profiles & buddypress groups.
For people interesting, this is an example of content block usage in bbpress replies: http://theme.firmasite.com/support/topic/firmasite-as-a-childtheme/#content_block5
Think about using this in user profiles & buddypress groups !!Yeah, have some links comes here and i see that trac ticket is not linking to latest result. Sorry if i did something wrong
FirmaSite 1.1.15 Released!
http://theme.firmasite.com/firmasite-1-1-15-released/
Color switch option for site title and taxonomy colors!Live Demo:
http://demo.theme.firmasite.com
Download & Official WordPress.Org page:Shortcode to display posts like ShowCase:
http://theme.firmasite.com/showcase-shortcode/I would like to hear your suggestions on this. Please send a comment in post.
Spanish Translation for FirmaSite theme, BuddyPress and bbPress plugins:
http://theme.firmasite.com/spanish-translation/FirmaSite 1.1.4 released.
Biggest improvement is adding Flatly named theme style. You can check demo here:
http://demo.theme.firmasite.com/?style=flatlyYou can read other details of changes here:
http://theme.firmasite.com/category/changelog/This weeks question & answer:
Question Summary: How to add custom css to all widgets?
Solution: In our theme, you can target all widgets with article.widget. An example:
article.widget { background: #fff; border-radius: 6px; margin: 10px; padding: 10px; box-shadow: rgba(0,0,0,0.3) 0 1px 3px; }
This weeks question & answer:
Showcase, promotion and custom content types
Question Summary: How to add PromotionBar and ShowCase feature to your custom post types?
Solution: Its super simple;
add_filter('firmasite_pre_get_posts_ekle', "firmasite_custom_cpt_add"); function firmasite_custom_cpt_add($array){ $array[]='anothercct'; return $array; }
This code will activate PromotionBar and ShowCase features for your custom post type 🙂
An alternative menu code for BuddyPress menu:
http://theme.firmasite.com/support/topic/account-menu-in-top-menu-bar/It adds login form for visitors and it becomes buddypress menu for logged-in users. Code needs php5.3+ atm. You can play with it 🙂
Update: I added “Change style” button to theme website. Now you can see how buddypress or bbpress pages are changing when you change theme style.
Example BuddyPress Profile page:
http://theme.firmasite.com/members/unsalkorkmaz/profile/Dark style of same profile page: http://theme.firmasite.com/members/unsalkorkmaz/profile/?style=cyborg
Example bbPress forum:
http://theme.firmasite.com/support/forum/theme-support/Just change style from top-right and see the magic 🙂
@mercime ty 🙂
An update: I wrote an article about child-themes and how to add/remove custom bootstrap styles:
Yeah that was my bad for not waiting to publish but its good that i did.. Theme is published 2-3 days late but those little updates was necessary 🙂
and btw.. Theme is officially published in WordPress.Org: https://wordpress.org/extend/themes/firmasite
Tomorrow i will release a detailed article about child-theme writing but meanwhile you can try this parent theme
Sorry for people that waiting, passed 7+ days from approved but theme is still waiting for WordPress.Org publish. Its probably my fault that i released some newer versions before it gets published. I cant give a date but at least theme will be in WordPress.Org soon.
Meanwhile you can check my example child-theme: http://theme.firmasite.com/example.zip
This theme;- adds Flatstrap custom style to theme style list
- selects it automatically
- removing default default bootstrap style from list.
You can edit this child-theme however you want 🙂
This needs advanced coding.
Check this plugin:
https://wordpress.org/extend/plugins/wordpress-turkce/Description is in Turkish but plugin codes are in English. When you define:
`define( ‘WPTURKCE_USER’, true );`
This plugin allows Turkish characters ( ŞşİıĞğÜüÖöÇç ) in usernames.
You really need to understand php for what you want.Thanks a lot ^^
For people already started to use FirmaSite theme: dont forget to keep your eyes on Tip & Tricks! I am sending some pretty neat customizations that you can easily use 🙂
And theme got approved 🙂
https://themes.trac.wordpress.org/ticket/11702That means theme code is checked by theme reviewers and its trustworthy. You can download from WordPress.Org soon. Meanwhile you can explore theme or download from http://theme.firmasite.com/
Sorry for non-english examples. Basically i dont have english network yet ^^
Should i create a community in http://theme.firmasite.com/ ? Its a network itself so i can install buddypress and open registration etc. I couldnt decide on this actually but i generally hate registering to lots of site for able to get support. If i dont change my mind, i am thinking to give support on wordpress.org’s forums because everyone have account in there.What do you guys think about registering a site for getting support?
I can give you more example if i can understand which sections you want to see. Only additional features for multisite networks i remember now is blogs list in buddypress.
Example multisite blogs list:
http://yerleske.net/siteler/You can watch a live-demo that i am showing theme options:
or from in front of:
http://theme.firmasite.com/if you mean WordPress Multisite with “network environment”; My all sites are built on multisite. For example main site is: http://yerleske.net/ and http://unsalkorkmaz.com/ is one of sub-domain.
If you mean BuddPress examples;
My buddypress profiles:
http://yerleske.net/uyeler/unsalkorkmaz/
http://kremim.com/uye/listesi/ajx/bbPress forum example:
http://kremim.com/forum/soru-cevap/Firmasite 1.1.6 released:
https://themes.trac.wordpress.org/ticket/11702You can find detailed information, showcase, live demo,
tips and tricks about theme in: http://theme.firmasite.com/You can check changelog from: http://theme.firmasite.com/category/changelog/
function restrict_admin(){ //if Subscriber or low, kill WordPress execution and provide a message if ( ! current_user_can( 'edit_posts' ) ) { wp_die( __('You are not allowed to access this part of the site') ); } } add_action( 'admin_init', 'restrict_admin', 1 );
Is this ok for you?