Skip to content

Commit

Permalink
added and restructured
Browse files Browse the repository at this point in the history
  • Loading branch information
shuvoaftab committed Jul 10, 2024
1 parent c5797e3 commit e573f6c
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 20 deletions.
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default defineConfig({
label: 'Get Started',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Start', slug: 'guides/start' },
{ label: 'Start', slug: 'index/start' },
],
},
{
Expand Down
File renamed without changes
File renamed without changes.
22 changes: 22 additions & 0 deletions src/content/docs/glossary/all-filters.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: All Filters
description: Glossary of All Filter Hooks for FluentCRM.
---

### Free Version (v2.9.0 - July, 2024)

```php
fluent-crm/app/Functions/helpers.php
```
```bash
fluent_crm/contact_statuses
fluent_crm/contact_editable_statuses
fluent_crm/contact_types
fluent_crm/contact_activity_types
subscriber_strict_statuses
fluencrm_csv_mimes
fluent_crm/get_avatar
fluent_crm/track_click
fluent_crm/will_track_user_ip
fluent_crm/menu_url_base
```
File renamed without changes.
4 changes: 0 additions & 4 deletions src/content/docs/glossary/filters.md

This file was deleted.

22 changes: 8 additions & 14 deletions src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,15 @@
title: FluentCRM Advanced Docs
description: Get started customizing your FluentCRM installation with Actions, Filters, and Snippets.
template: splash
hero:
tagline: Get started customizing your FluentCRM installation with Actions, Filters, and Snippets!
image:
file: ../../assets/FluentCRM_sales_banner.png
actions:
- text: Get Started
link: /guides/start/
icon: right-arrow
variant: primary
- text: Read all the FluentCRM Docs
link: https://fluentcrm.com/docs
icon: external
---

<h2>Customize your FluentCRM with Actions, Filters, and Snippets!</h2>

<br/>
<a href="./index/start/" class="btn ast-primary">Get Started</a>
<a href="https://fluentcrm.com/docs" class="btn ast-primary">Official Docs</a>

### Maintained by:
<p style="font-size:2rem;font-weight:600;margin:1rem 0 0">Ibrahim Sharif</p>
<p style="font-size:1.5rem;margin:0;line-height:1.2">Product Support Manager, FluentCRM <br/>Product Support Manager, FluentSMTP</p>

<h4>Ibrahim Sharif</h4>
<p>Product Support Manager, FluentCRM <br/>Product Support Manager, FluentSMTP</p>
File renamed without changes.
16 changes: 15 additions & 1 deletion src/content/docs/misc/filters.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ description: A collection of all Hooks Filter for FluentCRM.
*
* @return array array of CSV mimes
*/
return apply_filters('fluencrm_csv_mimes', [
apply_filters('fluencrm_csv_mimes', [
'text/csv',
'text/plain',
'application/csv',
Expand All @@ -34,4 +34,18 @@ description: A collection of all Hooks Filter for FluentCRM.
]);
```
</li>
<li>
## Contact Import CSV Mimes

```bash
Location: wp-content/plugins/fluent-crm/app/Functions/helpers.php
Line: 954
Version: 2.9.0
fluentcrm_menu_url_base()
```

```php
apply_filters('fluent_crm/menu_url_base', admin_url('admin.php?page=fluentcrm-admin#/'));
```
</li>
</ol>
17 changes: 17 additions & 0 deletions src/styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,21 @@
}
li::marker {
font-size: 2rem;
}

.btn{
background-color: var(--sl-color-accent);
color: var(--sl-color-white);
border: none;
padding: 0.5rem 1rem;
margin: 0.5rem 0;
border-radius: 0.5rem;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: background-color 0.3s;
text-decoration: none;
}
.ast-primary{
font-size: 1.5rem;
}

0 comments on commit e573f6c

Please sign in to comment.