├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── assets-repos ├── github-com │ └── btc-banner.png └── wordpress-org │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── index.php │ ├── screenshot-01.png │ ├── screenshot-02.png │ ├── screenshot-03.png │ ├── screenshot-04.png │ ├── screenshot-05.png │ ├── screenshot-06.png │ ├── screenshot-07.png │ ├── screenshot-08.png │ ├── screenshot-09.png │ ├── screenshot-10.png │ └── screenshot-11.png ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── css │ ├── btc-help.css │ └── index.php ├── icon-128x128.png ├── icon-256x256.png ├── icon.svg └── index.php ├── composer.json ├── includes ├── admin │ ├── admin-extras.php │ ├── admin-help.php │ └── index.php ├── functions-conditionals.php ├── functions-global.php ├── index.php ├── integrations │ ├── elementor-finder.php │ ├── index.php │ ├── integration-advanced-custom-blocks.php │ ├── integration-advanced-custom-fields.php │ ├── integration-anywhere-elementor.php │ ├── integration-astra.php │ ├── integration-avada-fusion-builder.php │ ├── integration-beaver-templates.php │ ├── integration-block-areas.php │ ├── integration-block-editor.php │ ├── integration-block-lab.php │ ├── integration-block-layouts.php │ ├── integration-block-templates.php │ ├── integration-boldgrid.php │ ├── integration-boxzilla.php │ ├── integration-bricks.php │ ├── integration-brizy.php │ ├── integration-bsf-sidebar-manager.php │ ├── integration-cartflows.php │ ├── integration-cherry-popups.php │ ├── integration-cmb2-admin-extension.php │ ├── integration-content-blocks.php │ ├── integration-cornerstone-global-blocks.php │ ├── integration-custom-field-suite.php │ ├── integration-custom-page-templates.php │ ├── integration-custom-template-learndash.php │ ├── integration-custom-template-lifterlms.php │ ├── integration-customify.php │ ├── integration-dev-content-blocks.php │ ├── integration-dhwc-elementor.php │ ├── integration-divi-templates.php │ ├── integration-easy-content-templates.php │ ├── integration-elementor.php │ ├── integration-elements-kit.php │ ├── integration-epic-news-elements.php │ ├── integration-flo-forms.php │ ├── integration-generatepress.php │ ├── integration-genesis-blox.php │ ├── integration-givewp.php │ ├── integration-happyforms.php │ ├── integration-hf-elementor.php │ ├── integration-holler-box.php │ ├── integration-ht-script.php │ ├── integration-jetengine.php │ ├── integration-jetpopup.php │ ├── integration-jetsmartfilters.php │ ├── integration-jetthemecore.php │ ├── integration-jetwoobuilder.php │ ├── integration-kadence-woocommerce-elementor.php │ ├── integration-lazy-blocks.php │ ├── integration-loomisoft-content-blocks.php │ ├── integration-master-popups.php │ ├── integration-metabox-builder.php │ ├── integration-metabox-posttypes.php │ ├── integration-neve.php │ ├── integration-oceanwp.php │ ├── integration-opal-widgets-elementor.php │ ├── integration-oxygen-builder.php │ ├── integration-page-builder-framework.php │ ├── integration-pods.php │ ├── integration-popboxes.php │ ├── integration-popup-maker.php │ ├── integration-reusable-blocks-extended.php │ ├── integration-reusable-content-blocks.php │ ├── integration-reusable-layouts-siteorigin.php │ ├── integration-reusable-templates.php │ ├── integration-simple-content-templates.php │ ├── integration-smart-footer-system.php │ ├── integration-sqh-placeholder-block.php │ ├── integration-stylepress-elementor.php │ ├── integration-suki.php │ ├── integration-templementor.php │ ├── integration-text-blocks.php │ ├── integration-themify-builder.php │ ├── integration-themify-popup.php │ ├── integration-thrive-lightboxes.php │ ├── integration-toolkit-elementor.php │ ├── integration-visual-composer.php │ ├── integration-widget-content-blocks.php │ ├── integration-woody-snippets.php │ ├── integration-woostify.php │ ├── integration-wpbakery.php │ └── integration-wpshowposts.php ├── load-integrations.php ├── register-taxonomy.php ├── run-integrations.php └── string-switcher.php ├── index.php └── languages ├── builder-template-categories-de_DE.l10n.php ├── builder-template-categories-de_DE.mo ├── builder-template-categories-de_DE.po ├── builder-template-categories-de_DE_formal.l10n.php ├── builder-template-categories-de_DE_formal.mo ├── builder-template-categories-de_DE_formal.po ├── builder-template-categories.pot └── index.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/_config.yml -------------------------------------------------------------------------------- /assets-repos/github-com/btc-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/github-com/btc-banner.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/banner-1544x500.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/banner-772x250.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/index.php -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-01.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-02.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-03.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-04.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-05.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-06.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-07.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-08.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-09.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-10.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets-repos/wordpress-org/screenshot-11.png -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/css/btc-help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/css/btc-help.css -------------------------------------------------------------------------------- /assets/css/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/css/index.php -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/assets/index.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/composer.json -------------------------------------------------------------------------------- /includes/admin/admin-extras.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/admin/admin-extras.php -------------------------------------------------------------------------------- /includes/admin/admin-help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/admin/admin-help.php -------------------------------------------------------------------------------- /includes/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/admin/index.php -------------------------------------------------------------------------------- /includes/functions-conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/functions-conditionals.php -------------------------------------------------------------------------------- /includes/functions-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/functions-global.php -------------------------------------------------------------------------------- /includes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/index.php -------------------------------------------------------------------------------- /includes/integrations/elementor-finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/elementor-finder.php -------------------------------------------------------------------------------- /includes/integrations/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/index.php -------------------------------------------------------------------------------- /includes/integrations/integration-advanced-custom-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-advanced-custom-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-advanced-custom-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-advanced-custom-fields.php -------------------------------------------------------------------------------- /includes/integrations/integration-anywhere-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-anywhere-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-astra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-astra.php -------------------------------------------------------------------------------- /includes/integrations/integration-avada-fusion-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-avada-fusion-builder.php -------------------------------------------------------------------------------- /includes/integrations/integration-beaver-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-beaver-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-block-areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-block-areas.php -------------------------------------------------------------------------------- /includes/integrations/integration-block-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-block-editor.php -------------------------------------------------------------------------------- /includes/integrations/integration-block-lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-block-lab.php -------------------------------------------------------------------------------- /includes/integrations/integration-block-layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-block-layouts.php -------------------------------------------------------------------------------- /includes/integrations/integration-block-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-block-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-boldgrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-boldgrid.php -------------------------------------------------------------------------------- /includes/integrations/integration-boxzilla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-boxzilla.php -------------------------------------------------------------------------------- /includes/integrations/integration-bricks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-bricks.php -------------------------------------------------------------------------------- /includes/integrations/integration-brizy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-brizy.php -------------------------------------------------------------------------------- /includes/integrations/integration-bsf-sidebar-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-bsf-sidebar-manager.php -------------------------------------------------------------------------------- /includes/integrations/integration-cartflows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-cartflows.php -------------------------------------------------------------------------------- /includes/integrations/integration-cherry-popups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-cherry-popups.php -------------------------------------------------------------------------------- /includes/integrations/integration-cmb2-admin-extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-cmb2-admin-extension.php -------------------------------------------------------------------------------- /includes/integrations/integration-content-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-content-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-cornerstone-global-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-cornerstone-global-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-custom-field-suite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-custom-field-suite.php -------------------------------------------------------------------------------- /includes/integrations/integration-custom-page-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-custom-page-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-custom-template-learndash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-custom-template-learndash.php -------------------------------------------------------------------------------- /includes/integrations/integration-custom-template-lifterlms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-custom-template-lifterlms.php -------------------------------------------------------------------------------- /includes/integrations/integration-customify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-customify.php -------------------------------------------------------------------------------- /includes/integrations/integration-dev-content-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-dev-content-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-dhwc-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-dhwc-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-divi-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-divi-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-easy-content-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-easy-content-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-elements-kit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-elements-kit.php -------------------------------------------------------------------------------- /includes/integrations/integration-epic-news-elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-epic-news-elements.php -------------------------------------------------------------------------------- /includes/integrations/integration-flo-forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-flo-forms.php -------------------------------------------------------------------------------- /includes/integrations/integration-generatepress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-generatepress.php -------------------------------------------------------------------------------- /includes/integrations/integration-genesis-blox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-genesis-blox.php -------------------------------------------------------------------------------- /includes/integrations/integration-givewp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-givewp.php -------------------------------------------------------------------------------- /includes/integrations/integration-happyforms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-happyforms.php -------------------------------------------------------------------------------- /includes/integrations/integration-hf-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-hf-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-holler-box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-holler-box.php -------------------------------------------------------------------------------- /includes/integrations/integration-ht-script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-ht-script.php -------------------------------------------------------------------------------- /includes/integrations/integration-jetengine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-jetengine.php -------------------------------------------------------------------------------- /includes/integrations/integration-jetpopup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-jetpopup.php -------------------------------------------------------------------------------- /includes/integrations/integration-jetsmartfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-jetsmartfilters.php -------------------------------------------------------------------------------- /includes/integrations/integration-jetthemecore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-jetthemecore.php -------------------------------------------------------------------------------- /includes/integrations/integration-jetwoobuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-jetwoobuilder.php -------------------------------------------------------------------------------- /includes/integrations/integration-kadence-woocommerce-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-kadence-woocommerce-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-lazy-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-lazy-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-loomisoft-content-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-loomisoft-content-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-master-popups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-master-popups.php -------------------------------------------------------------------------------- /includes/integrations/integration-metabox-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-metabox-builder.php -------------------------------------------------------------------------------- /includes/integrations/integration-metabox-posttypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-metabox-posttypes.php -------------------------------------------------------------------------------- /includes/integrations/integration-neve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-neve.php -------------------------------------------------------------------------------- /includes/integrations/integration-oceanwp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-oceanwp.php -------------------------------------------------------------------------------- /includes/integrations/integration-opal-widgets-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-opal-widgets-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-oxygen-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-oxygen-builder.php -------------------------------------------------------------------------------- /includes/integrations/integration-page-builder-framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-page-builder-framework.php -------------------------------------------------------------------------------- /includes/integrations/integration-pods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-pods.php -------------------------------------------------------------------------------- /includes/integrations/integration-popboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-popboxes.php -------------------------------------------------------------------------------- /includes/integrations/integration-popup-maker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-popup-maker.php -------------------------------------------------------------------------------- /includes/integrations/integration-reusable-blocks-extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-reusable-blocks-extended.php -------------------------------------------------------------------------------- /includes/integrations/integration-reusable-content-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-reusable-content-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-reusable-layouts-siteorigin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-reusable-layouts-siteorigin.php -------------------------------------------------------------------------------- /includes/integrations/integration-reusable-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-reusable-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-simple-content-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-simple-content-templates.php -------------------------------------------------------------------------------- /includes/integrations/integration-smart-footer-system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-smart-footer-system.php -------------------------------------------------------------------------------- /includes/integrations/integration-sqh-placeholder-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-sqh-placeholder-block.php -------------------------------------------------------------------------------- /includes/integrations/integration-stylepress-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-stylepress-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-suki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-suki.php -------------------------------------------------------------------------------- /includes/integrations/integration-templementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-templementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-text-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-text-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-themify-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-themify-builder.php -------------------------------------------------------------------------------- /includes/integrations/integration-themify-popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-themify-popup.php -------------------------------------------------------------------------------- /includes/integrations/integration-thrive-lightboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-thrive-lightboxes.php -------------------------------------------------------------------------------- /includes/integrations/integration-toolkit-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-toolkit-elementor.php -------------------------------------------------------------------------------- /includes/integrations/integration-visual-composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-visual-composer.php -------------------------------------------------------------------------------- /includes/integrations/integration-widget-content-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-widget-content-blocks.php -------------------------------------------------------------------------------- /includes/integrations/integration-woody-snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-woody-snippets.php -------------------------------------------------------------------------------- /includes/integrations/integration-woostify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-woostify.php -------------------------------------------------------------------------------- /includes/integrations/integration-wpbakery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-wpbakery.php -------------------------------------------------------------------------------- /includes/integrations/integration-wpshowposts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/integrations/integration-wpshowposts.php -------------------------------------------------------------------------------- /includes/load-integrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/load-integrations.php -------------------------------------------------------------------------------- /includes/register-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/register-taxonomy.php -------------------------------------------------------------------------------- /includes/run-integrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/run-integrations.php -------------------------------------------------------------------------------- /includes/string-switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/includes/string-switcher.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/index.php -------------------------------------------------------------------------------- /languages/builder-template-categories-de_DE.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories-de_DE.l10n.php -------------------------------------------------------------------------------- /languages/builder-template-categories-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories-de_DE.mo -------------------------------------------------------------------------------- /languages/builder-template-categories-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories-de_DE.po -------------------------------------------------------------------------------- /languages/builder-template-categories-de_DE_formal.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories-de_DE_formal.l10n.php -------------------------------------------------------------------------------- /languages/builder-template-categories-de_DE_formal.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories-de_DE_formal.mo -------------------------------------------------------------------------------- /languages/builder-template-categories-de_DE_formal.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories-de_DE_formal.po -------------------------------------------------------------------------------- /languages/builder-template-categories.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/builder-template-categories.pot -------------------------------------------------------------------------------- /languages/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deckerweb/builder-template-categories/HEAD/languages/index.php --------------------------------------------------------------------------------