Contents

Advanced settings — Plugixa Recipe

The Advanced tab holds power-user options: custom CSS/JS injection, debug logging, and uninstall behavior.

Go to Recipes → Settings → Advanced.

Advanced settings

Options

Key Default Notes
custom_css (empty) Injected into every page that contains recipe output. Scoped to #plugixarecipe-root on admin and auto-prefixed .pxr-* on frontend.
custom_js (empty) Injected at the bottom of pages with recipe output. Wrapped in a DOMContentLoaded listener.
debug_mode false Verbose logging to wp-content/uploads/plugixarecipe-debug.log. Rotate manually — the plugin does not cap file size.
uninstall_behavior keep keep preserves data on delete; drop removes all custom tables, options, and uploaded images.
load_demo_data PRO (button) One-shot: installs 37 demo recipes, 7 categories, 18 cuisines, 60 reviews. Safe to run on a fresh install; skips duplicates on re-run.
reset_demo_data PRO (button) Removes only the demo items (recognized by their pxr_demo meta key). Your real recipes are untouched.

Using custom_css safely

The editor accepts any CSS, but the plugin wraps the output with #plugixarecipe-root { ... } on admin pages and .pxr-container { ... } on the frontend to prevent leaking into other parts of the site.

To override the theme color globally, use the --pxr-* CSS variables:

.pxr-container {
  --pxr-primary: #e74c3c;
  --pxr-radius: 12px;
}

See Views for per-layout theming without custom CSS.

Quick Links