Other Archives - SeedProd https://www.seedprod.com WordPress Coming Soon Page and Maintenance Mode Plugin Fri, 18 Jul 2025 16:02:10 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.2 https://www.seedprod.com/wp-content/uploads/2020/10/cropped-Favicon-32x32.png Other Archives - SeedProd https://www.seedprod.com 32 32 Import and Export SeedProd Themes and Landing Pages https://www.seedprod.com/docs/import-and-export-seedprod-themes-and-landing-pages/ Tue, 29 Mar 2022 19:12:48 +0000 https://www.seedprod.com/?post_type=ht_kb&p=20153 You can now import and export your landing pages and custom SeedProd themes created in the Theme Builder with a few clicks. Even if your theme includes custom WooCommerce templates, SeedProd will export the entire theme, ready for you to import onto another WordPress website. How to Export/Import Your Theme Builder Settings Exporting Theme Builder […]

The post Import and Export SeedProd Themes and Landing Pages appeared first on SeedProd.]]>

You can now import and export your landing pages and custom SeedProd themes created in the Theme Builder with a few clicks. Even if your theme includes custom WooCommerce templates, SeedProd will export the entire theme, ready for you to import onto another WordPress website.

How to Export/Import Your Theme Builder Settings

Exporting Theme Builder Settings

  1. From your WP admin dashboard, go to SeedProd > Import / Export.
  2. Click on the Export Theme Files button within the Import / Export Theme Builder section. This will prepare a ZIP file (“seedprod-export-theme-files.zip”) that will be downloaded to your computer.

Importing Theme Builder Settings

  1. From your WP admin dashboard, go to SeedProd > Import / Export
  2. You can import your Theme Builder settings using the exported ZIP file stored locally on your computer or on a web/FTP server.

    1. To use an exported Theme Builder ZIP file on your computer, click on the Choose file button within the Import / Export Theme Builder section. Then, locate and select the ZIP file.
    2. To use an exported Theme Builder ZIP file that’s stored on a web server or FTP server, enter the URL of this file in the Enter Import file URL input box.
  3. Click on the Import Theme Files button (or the Import by Theme URL button) to start the import process. This will be completed when the “Import Started” popup message (at the top right of the page) disappears.

How to Export/Import Your Landing Pages

Exporting a landing page

  1. From your WP admin dashboard, go to SeedProd > Import / Export
  2. Under the Import / Export Landing Pages section, select the desired landing page to export from the Select Pages dropdown menu.
  3. Click on the Export Landing Page button to begin the export process. This will prepare a ZIP file (“seedprod-export-landing-page-files.zip”) with all the that will be downloaded to your computer.

Importing a landing page

  1. From your WP admin dashboard, go to SeedProd > Import / Export
  2. Under the Import / Export Landing Pages section, click on the Choose file button within the Import Landing Page
    sub-section. Then, locate and select the ZIP file.
  3. Click on the Import Landing Page button to start the import process. This will be completed when the “Import Started” popup message (at the top right of the page) disappears.
The post Import and Export SeedProd Themes and Landing Pages appeared first on SeedProd.]]>
How To Use Custom Fonts with SeedProd https://www.seedprod.com/docs/how-to-use-custom-fonts-with-seedprod/ Wed, 10 Aug 2022 14:30:12 +0000 https://www.seedprod.com/?post_type=ht_kb&p=22612 You can use custom fonts with SeedProd by employing the CSS3 @font-face method. This method enables you to integrate any preferred font into your website. To begin, you must download your desired font in a web-compatible format. Ideally, you should also convert your custom fonts to the following formats to ensure they are visible across […]

The post How To Use Custom Fonts with SeedProd appeared first on SeedProd.]]>
You can use custom fonts with SeedProd by employing the CSS3 @font-face method. This method enables you to integrate any preferred font into your website.

To begin, you must download your desired font in a web-compatible format. Ideally, you should also convert your custom fonts to the following formats to ensure they are visible across multiple browsers and devices. You can use the FontSquirrel Webfont generator to generate the following font files.

  • WOFF: Web Open Font Format suitable for web pages.
  • WOFF2: An improved version of WOFF with enhanced compression.
  • TTF: TrueType font, common across Mac OS and Windows.
  • SVG: Scalable Vector Graphics font allowing SVG as glyphs.
  • EOT: Embedded OpenType fonts for web page usage.
  • OTF: OpenType format widely used on various platforms.

After obtaining your font files, the next step is to upload them to your WordPress hosting server. You can do this via FTP, your cPanel’s File Manager, or by using a File Manager plugin. Select any folder within your /wp-content/ directory to upload your custom fonts.

Adding Custom Fonts in SeedProd’s Global CSS Settings

After successful font upload, you’ll use the CSS3 @font-face technique with direct links to your custom font files.

Insert this CSS code, referencing your custom font, within the Global Settings > Custom CSS section found in your SeedProd editor. Update the font-family and URL with your font details.

@font-face {
font-family: 'YourFontName';
src: url('https://example.com/wp-content/Fonts/YourFont.ttf') format("ttf"),
url('https://example.com/wp-content/Fonts/YourFont.otf') format("otf"),
url('https://example.com/wp-content/Fonts/YourFont.svg') format("svg"),
url('https://example.com/wp-content/Fonts/YourFont.eot') format("eot"),
url('https://example.com/wp-content/Fonts/YourFont.woff') format("woff");
}

Following this, you can apply the font across your site:

h1, h2, h3 {
font-family: 'YourFontName', sans-serif;
}

Example:

The post How To Use Custom Fonts with SeedProd appeared first on SeedProd.]]>
How to Add a Favicon to Your SeedProd Website https://www.seedprod.com/docs/how-to-add-a-favicon-to-your-seedprod-website/ Mon, 14 Nov 2022 21:51:34 +0000 https://www.seedprod.com/?post_type=ht_kb&p=24744 A Favicon (or Site Icon) is the small image that appears in the browser next to your website title. It assists your users in identifying your website, and frequent visitors will develop instant recognition for that tiny image. This increases brand recognition and aids in the development of trust among your target audiences. Here are […]

The post How to Add a Favicon to Your SeedProd Website appeared first on SeedProd.]]>
A Favicon (or Site Icon) is the small image that appears in the browser next to your website title. It assists your users in identifying your website, and frequent visitors will develop instant recognition for that tiny image. This increases brand recognition and aids in the development of trust among your target audiences.

Here are some ways to add a favicon to your website:

Adding a Favicon in the Theme’s Customizer

You can add a favicon or site icon in your theme’s Customizer. Simply go to Appearance > Customize and click on the Site Identity tab to add your favicon.

Note: The Appearance > Customize > Site Identity section in the Customizer might not be available in some themes. In this case, we recommend manually adding the favicon to your website’s header using WPCode (see below).

Adding a Favicon to Your Website’s Header Using WPCode

If the Appearance > Customize > Site Identity section is not available in your theme, you may install the WPCode plugin and paste the example code below in the ‘Header’  scripts section. Make sure to replace the URL with the URL of your favicon image.

<link rel="icon" href="https://www.example.com/favicon.png" type="image/x-icon" />
<link rel="shortcut icon" href="https://www.example.com/favicon.png" type="image/x-icon" />

Alternatively, you can install a plugin called All in One Favicon to upload your favicon.

The post How to Add a Favicon to Your SeedProd Website appeared first on SeedProd.]]>
How to Create a Sticky Header https://www.seedprod.com/docs/how-to-create-a-sticky-header/ Tue, 06 Sep 2022 01:35:19 +0000 https://www.seedprod.com/?post_type=ht_kb&p=23174 A sticky header keeps at the top of the screen as the user scrolls up/down on the page. This provides a seamless user experience while navigating through the site, using the navigation menu that’s always within their view. Creating a Sticky Header While editing a page or template with SeedProd, add a section that will […]

The post How to Create a Sticky Header appeared first on SeedProd.]]>
A sticky header keeps at the top of the screen as the user scrolls up/down on the page. This provides a seamless user experience while navigating through the site, using the navigation menu that’s always within their view.

Creating a Sticky Header

  1. While editing a page or template with SeedProd, add a section that will contain your header elements.
  2. After creating your header section, click on the section’s settings handle (the gear icon within the section’s purple toolbar) to open its settings panel. You may also do this by opening the Layout Navigation panel, and then clicking on the header section within this panel.
  3. Click on the “Advanced” tab and then open the “Position” panel.
  4. In the “Position” dropdown menu, select “Sticky”. Then, add a zero (“0”) top offset and a high z-index number (for example, “9999”) to ensure that the header stays at the top above all elements on the page.
  5. Save this page or template then preview the page to see the sticky header in action while scrolling down/up on the page.
  6. That’s it! You now have an awesome sticky header on your site.
The post How to Create a Sticky Header appeared first on SeedProd.]]>
Usage Tracking https://www.seedprod.com/docs/usage-tracking/ Thu, 07 Apr 2022 19:52:21 +0000 https://www.seedprod.com/?post_type=ht_kb&p=20295 Usage tracking for SeedProd helps us better understand our users and their website needs by looking at a range of server and website environments. This allows us to continuously improve our product as well as our Q&A / testing process. Below is the list of information that SeedProd collects as part of the usage tracking: […]

The post Usage Tracking appeared first on SeedProd.]]>
Usage tracking for SeedProd helps us better understand our users and their website needs by looking at a range of server and website environments. This allows us to continuously improve our product as well as our Q&A / testing process. Below is the list of information that SeedProd collects as part of the usage tracking:

  • PHP Version: so we know which PHP versions we have to test against (no one likes whitescreens or log files full of errors).
  • WordPress Version: so we know which WordPress versions to support and test against.
  • MySQL Version: so we know which versions of MySQL to support and test against for our custom tables.
  • SeedProd Version: so we know which versions of SeedProd are potentially responsible for issues when we get bug reports, allowing us to identify issues and release solutions much faster.
  • The SERVER_SOFTWARE variable in PHP: combined with an SeedProd option called SAS are used to parse out which web hosting companies our users are using. We use this to determine the top hosts users are using and make sure that we have testing accounts with those hosting companies, so we can properly test our new releases with various host environments. This also helps us identify conflicts with specific hosting providers so we know which hosts to work with to fix the issue if it’s a server configuration issue.
  • Theme/Plugin names and versions: So we know which themes and plugins to support and test against. SeedProd runs on over 1 million websites. While we can’t test with all 50,000+ plugins, we do our best to test against the top plugins from this list.
  • License key and email and url: If you’re an SeedProd customer, then we use this to determine if there’s an issue with your specific license key, and to link the profile of your site with the configuration of authentication to allow us to determine if there’s issues with your SeedProd authentication.
  • SeedProd settings: So we know which settings people are using, allowing us to determine potentially which new settings or areas of SeedProd people want us to expand on, and which settings people aren’t using.
  • Site and user count and is multisite: This allows us to gauge how important it is to support specific types of multisites like multi-network and similar styles of configuration and gauge how much we need to scale our servers before launching features like author tracking dashboards that are correlated to the number of users on a site using it in terms of scale.
  • Usage tracking config: The SeedProd option that contains the information on when the usage tracking data-sync will happen (once a week), so we can gauge the server load for the usage tracking servers.
The post Usage Tracking appeared first on SeedProd.]]>
Creating Reusable Blocks for Consistent Design https://www.seedprod.com/docs/creating-reusable-blocks-for-consistent-design/ Fri, 18 Jul 2025 14:44:54 +0000 https://www.seedprod.com/?post_type=ht_kb&p=40157 Need to reuse a custom design across multiple pages? Save any block you create as a reusable template to maintain consistency without having to rebuild it each time. This is especially handy for elements like call-to-action buttons, testimonials, or any other blocks you want to reuse across your site. How to Save a Block To […]

The post Creating Reusable Blocks for Consistent Design appeared first on SeedProd.]]>
Need to reuse a custom design across multiple pages? Save any block you create as a reusable template to maintain consistency without having to rebuild it each time. This is especially handy for elements like call-to-action buttons, testimonials, or any other blocks you want to reuse across your site.

How to Save a Block

To save a block:

  1. Hover over the block you’d like to reuse.
  2. Click the Save icon (floppy disk).
    Saved Blocks
  3. Give your block a name, then click Save Template.
    Saved Blocks

Once saved, your reusable block will appear at the bottom of the left-hand panel in the SeedProd editor under the Saved Blocks tab.

How to Reuse a Saved Block

To add a saved block to a page:

  1. Scroll to the Saved Blocks section in the editor’s left panel.
    Saved Blocks
  2. Drag and drop your saved block into the layout just like any other block.

Saved blocks are a great way to stay consistent and speed up your page-building workflow.

The post Creating Reusable Blocks for Consistent Design appeared first on SeedProd.]]>
Creating Reusable Sections for Faster Page Building https://www.seedprod.com/docs/creating-reusable-sections-for-faster-page-building/ Fri, 18 Jul 2025 15:24:05 +0000 https://www.seedprod.com/?post_type=ht_kb&p=40164 Need to reuse a custom section layout across multiple pages? Save any section you create as a reusable template to keep your design consistent and save time. This is especially useful for layouts like hero areas, feature sections, and any other sections you want to repeat throughout your site. How to Save a Section To […]

The post Creating Reusable Sections for Faster Page Building appeared first on SeedProd.]]>
Need to reuse a custom section layout across multiple pages? Save any section you create as a reusable template to keep your design consistent and save time. This is especially useful for layouts like hero areas, feature sections, and any other sections you want to repeat throughout your site.

How to Save a Section

To save a section:

  1. Hover over the section you’d like to reuse.
  2. Click the Save icon (floppy disk) in the section toolbar.
    Saved Section
  3. Give your section a name, then click Save Template.
    Saved Section

Once saved, your reusable section will appear in the editor’s left panel under Sections > Saved.

How to Reuse a Saved Section

To add a saved section to a page:

  1. Open the Sections tab in the editor’s left panel.
  2. Click Saved, then drag and drop your saved section into the layout like any other section.
    Saved section

Saved sections help you work more efficiently and maintain a cohesive look throughout your site.

The post Creating Reusable Sections for Faster Page Building appeared first on SeedProd.]]>
Creating Global Part Templates for Site-Wide Consistency https://www.seedprod.com/docs/creating-global-part-templates-for-site-wide-consistency/ Fri, 18 Jul 2025 15:39:18 +0000 https://www.seedprod.com/?post_type=ht_kb&p=40169 Need to display the same content in multiple places and keep it synced automatically? Global Part templates let you design reusable sections that update everywhere when edited. It’s a powerful way to maintain consistency across your entire website. How to Create a Global Part Template To set up a global template: How to Use a […]

The post Creating Global Part Templates for Site-Wide Consistency appeared first on SeedProd.]]>
Need to display the same content in multiple places and keep it synced automatically? Global Part templates let you design reusable sections that update everywhere when edited. It’s a powerful way to maintain consistency across your entire website.

How to Create a Global Part Template

To set up a global template:

  1. Go to the Theme Builder section in SeedProd.
  2. Click Add New Theme Template.
  3. Choose Global Part as the template type, give it a name, and click Save.
  4. Design your global part in the editor and save your changes.

How to Use a Global Part Template

To reuse a global template part on any page:

  1. Open the page in the SeedProd editor.
  2. Add a Template Parts block to the layout.
  3. Select the global template you want to display.
    Template Parts Block

When you update a global part template, the changes automatically apply everywhere it’s used—no need to edit each page individually.

Global parts are ideal for shared design elements you want to manage in one place.

The post Creating Global Part Templates for Site-Wide Consistency appeared first on SeedProd.]]>
How to Generate a Theme Using the SeedProd AI Builder https://www.seedprod.com/docs/how-to-generate-a-theme-using-the-seedprod-ai-builder/ Fri, 18 Jul 2025 15:52:32 +0000 https://www.seedprod.com/?post_type=ht_kb&p=40173 SeedProd’s AI Builder allows you to generate complete website themes in seconds—no design experience needed. You can create up to three custom themes, then download and install them directly into your WordPress site. Steps to Generate an AI Theme: How to Install the AI-Generated Theme in SeedProd: Apply the Theme Site-Wide In the Theme Builder […]

The post How to Generate a Theme Using the SeedProd AI Builder appeared first on SeedProd.]]>
SeedProd’s AI Builder allows you to generate complete website themes in seconds—no design experience needed. You can create up to three custom themes, then download and install them directly into your WordPress site.

Steps to Generate an AI Theme:

  1. Visit ai.seedprod.com.
  2. Enter your email address to request access.
  3. Check your inbox for a login link and click it to access the AI Builder.
  4. Follow the on-screen prompts to generate your theme. You can create up to three themes per email address.
  5. Once your theme is ready, download the ZIP file to your computer.

How to Install the AI-Generated Theme in SeedProd:

  1. In your WordPress dashboard, go to SeedProd → Import/Export.
  2. Upload the ZIP file you downloaded from the AI Builder.
  3. Click Import to install the theme into SeedProd.

Apply the Theme Site-Wide

In the Theme Builder section of SeedProd, please make sure the SeedProd Theme is enabled. This ensures that the imported templates are applied site-wide across your website.

You’re now ready to start customizing your AI-generated theme using the SeedProd visual editor.

The post How to Generate a Theme Using the SeedProd AI Builder appeared first on SeedProd.]]>