ChristopherDarling
Privileged
-
Joined
-
Last visited
Reputation Activity
-
ChristopherDarling got a reaction from Renaissance-Design in MagentoTo be honest until you're very familiar with PHP (and Zend knowledge would benefit you greatly when dealing with Magento) I'd completely stay away from it for now.
Depending on your budget I'd either suggest sub-contracting out the work to a developer or going for a smaller ecommerce platform (although you still probably will need to dabble with some php).
Chris
-
ChristopherDarling got a reaction from ashley_90 in Grabbing a section of html and displaying on different pageEasiest way is to use PHP. Rename the two pages above to .php extensions.
Create a new file called "myinclude.php" and enter the content that you want to include on both pages.
Now on the original two files replace the content you entered in "myinclude.php" with
<?php include('myinclude.php'); ?>
-
ChristopherDarling got a reaction from Bomb in New CMS to try that isn't WP, Joomla or Drupal maybe ?I'd recommend SilverStripe CMS (www.silverstripe.org). By far the best CMS I've come across
-
ChristopherDarling got a reaction from kanger in A little php help pleaseIt would be
if( is_single() && is_page() ) { // if both is_single() and is_page() return TRUE then this code is run } else { // if either or both don't return TRUE then this code is run }
+1 if this helps
-
ChristopherDarling got a reaction from jacob44 in Opening lightbox on successful for submissionHow are you posting the form? AJAX?
If so, just hook up the jQuery you want to run on the ajaxComplete or ajaxSuccess events in jQuery. See http://api.jquery.com/category/ajax/ for more info.
Please +1 if this helps
-
ChristopherDarling got a reaction from jacob44 in A little php help pleaseIt would be
if( is_single() && is_page() ) { // if both is_single() and is_page() return TRUE then this code is run } else { // if either or both don't return TRUE then this code is run }
+1 if this helps
-
ChristopherDarling got a reaction from waynede in JavaScript helpTry adding
//<![CDATA[
AFTER the <script> tag
and
//]]>
BEFORE the </script> tag