creativetushar
Forum Replies Created
-
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] how to hide Shortcodes ?Hey Scribu,
hope you doing gr8 …. is there a way you can think of that will hide
[]in front end or is there any way to use front end editor to edit only the content in J-shortcodes ??Forum: Plugins
In reply to: [Plugin: Front-end Editor] editable parts in page contentI am implementing it now
Forum: Plugins
In reply to: [Plugin: Front-end Editor] editable parts in page contentthanks scribu,
so this is a template in which I can use custom fields to get more editable regions and I can wrap it in a div to style individual boxes… am I getting it right ??
Forum: Plugins
In reply to: [Plugin: Front-end Editor] editable parts in page content<?php
// Template Name: Partially editable pageget_header();
?>…
<p>Some text here</p>
<?php editable_post_meta($post->ID, ‘first_block’, ‘rich’); ?>
<p>Some more text in-between.</p>
<?php editable_post_meta($post->ID, ‘another_block’, ‘input’); ?>
…
can u share full template example with 2-3 extra editable regions so that it helps a beginner like me
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] how to hide Shortcodes ?thanks for replying scribu but this question is different than this one
here I want to hide some content while using front end editor so end user won’t be able to see any shortcodes when they double click the content area
for example suppose I am using shortcode to show paypal button on my client’s site like this
`…….to buy this item in discount click here – [paypalBtn production=”true” amount=”55″ item_name=”ProduitB”]
hurry up stock is limited!!`so when end user double click to edit he only sees
.......to buy this item in discount click here - hurry up stock is limited!!Forum: Plugins
In reply to: [Plugin: Front-end Editor] editable parts in page contenthey folks,
I am not able to get page template with different editable regions
here’s my code for page template – http://pastebin.com/fAhPSTdYI replaced
the_content()with<?php editable_post_meta($post->ID, 'first_block', 'rich'); ?>let me know how to make it work
thanks